Skip to content

Commit fc08f74

Browse files
committed
Increase timeout waiting for driver to start on nodes to reduce test flakiness
Change-Id: Id553943e4473b387bf0ae14a18a90cb3a1bcd5c1
1 parent 4a89713 commit fc08f74

File tree

1 file changed

+1
-1
lines changed
  • test/e2e/storage/drivers

1 file changed

+1
-1
lines changed

test/e2e/storage/drivers/csi.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ func waitForCSIDriverRegistrationOnAllNodes(driverName string, cs clientset.Inte
490490
}
491491

492492
func waitForCSIDriverRegistrationOnNode(nodeName string, driverName string, cs clientset.Interface) error {
493-
const csiNodeRegisterTimeout = 1 * time.Minute
493+
const csiNodeRegisterTimeout = 5 * time.Minute
494494

495495
waitErr := wait.PollImmediate(10*time.Second, csiNodeRegisterTimeout, func() (bool, error) {
496496
csiNode, err := cs.StorageV1().CSINodes().Get(context.TODO(), nodeName, metav1.GetOptions{})

0 commit comments

Comments
 (0)