We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be4b045 commit 6ef07a2Copy full SHA for 6ef07a2
cmd/gce-pd-csi-driver/main.go
@@ -279,8 +279,9 @@ func handle() {
279
deviceCache, err := linkcache.NewDeviceCacheForNode(ctx, 1*time.Minute, *nodeName)
280
if err != nil {
281
klog.Warningf("Failed to create device cache: %v", err.Error())
282
+ } else {
283
+ go deviceCache.Run(ctx)
284
}
- go deviceCache.Run(ctx)
285
286
// TODO(2042): Move more of the constructor args into this struct
287
nsArgs := &driver.NodeServerArgs{
0 commit comments