Skip to content

Commit

Permalink
Fixed csiAddress flag dereference error
Browse files Browse the repository at this point in the history
  • Loading branch information
davidz627 committed Jun 27, 2018
1 parent dfd45b4 commit aeff3aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/driver-registrar/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func main() {
// can skip adding mappting to "csi.volume.kubernetes.io/nodeid" annotation.

// Connect to CSI.
glog.V(1).Infof("Attempting to open a gRPC connection with: %q", csiAddress)
glog.V(1).Infof("Attempting to open a gRPC connection with: %q", *csiAddress)
csiConn, err := connection.NewConnection(*csiAddress, *connectionTimeout)
if err != nil {
glog.Error(err.Error())
Expand Down

0 comments on commit aeff3aa

Please sign in to comment.