Skip to content

Commit

Permalink
Merge pull request #24 from avoltz/silindbl/bump-mount-timeout
Browse files Browse the repository at this point in the history
Bump mount timeout
  • Loading branch information
silindbl-msft committed Aug 10, 2023
2 parents 7a49195 + f68b966 commit 3104273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/edgecache/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func (m *Manager) callWithConnection(fun ConnectionUsingFunc, endpoint string) e

func (m *Manager) MountVolume(account string, container string, targetPath string) error {
return m.callWithConnection(func(conn grpc.ClientConnInterface) error {
return sendMount(csi_mounts.NewCSIMountsClient(conn), account, container, targetPath, 500*time.Millisecond, 5*time.Second)
return sendMount(csi_mounts.NewCSIMountsClient(conn), account, container, targetPath, 500*time.Millisecond, 30*time.Second)
}, m.mountEndpoint)
}

Expand Down

0 comments on commit 3104273

Please sign in to comment.