Skip to content

Commit f74ce88

Browse files
authored
Increase SolidFire volume create timeout
1 parent e673d0c commit f74ce88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

storage_drivers/solidfire/api/volume.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018 NetApp, Inc. All Rights Reserved.
1+
// Copyright 2025 NetApp, Inc. All Rights Reserved.
22

33
package api
44

@@ -75,7 +75,7 @@ func (c *Client) WaitForVolumeByID(ctx context.Context, volID int64) (Volume, er
7575
volumeBackoff.InitialInterval = 2 * time.Second
7676
volumeBackoff.Multiplier = 1.414
7777
volumeBackoff.RandomizationFactor = 0.1
78-
volumeBackoff.MaxElapsedTime = 30 * time.Second
78+
volumeBackoff.MaxElapsedTime = 60 * time.Second
7979

8080
// Run the volume check using an exponential backoff
8181
if err := backoff.RetryNotify(checkVolumeExists, volumeBackoff, volumeExistsNotify); err != nil {

0 commit comments

Comments
 (0)