Skip to content

Commit

Permalink
kubelet: volumemanager: poll immediate when waiting for volume attach…
Browse files Browse the repository at this point in the history
…ment
  • Loading branch information
sjenning committed Aug 2, 2018
1 parent c2536e2 commit 0413850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kubelet/volumemanager/volume_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ func (vm *volumeManager) WaitForAttachAndMount(pod *v1.Pod) error {
// like Downward API, depend on this to update the contents of the volume).
vm.desiredStateOfWorldPopulator.ReprocessPod(uniquePodName)

err := wait.Poll(
err := wait.PollImmediate(
podAttachAndMountRetryInterval,
podAttachAndMountTimeout,
vm.verifyVolumesMountedFunc(uniquePodName, expectedVolumes))
Expand Down

0 comments on commit 0413850

Please sign in to comment.