Skip to content

Commit 4d3b2b1

Browse files
authored
Increase Solidfire timeout
1 parent 94e10eb commit 4d3b2b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage_drivers/solidfire/api/volume.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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 = 60 * time.Second
78+
volumeBackoff.MaxElapsedTime = 300 * 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)