We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9033a2 commit 631f2c3Copy full SHA for 631f2c3
cmd/main.go
@@ -42,23 +42,6 @@ var (
42
)
43
44
func runProbe(ctx context.Context, csiConn connection.CSIConnection) error {
45
-
46
- // Get CSI driver name.
47
- glog.Infof("Calling CSI driver to discover driver name.")
48
- csiDriverName, err := csiConn.GetDriverName(ctx)
49
- if err != nil {
50
- return err
51
- }
52
- glog.Infof("CSI driver name: %q", csiDriverName)
53
54
- // Get CSI Driver Node ID
55
- glog.Infof("Calling CSI driver to discover node ID.")
56
- csiDriverNodeID, err := csiConn.NodeGetId(ctx)
57
58
59
60
- glog.Infof("CSI driver node ID: %q", csiDriverNodeID)
61
62
// Sending Probe request
63
glog.Infof("Sending probe request to CSI driver.")
64
if err := csiConn.LivenessProbe(ctx); err != nil {
0 commit comments