You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to README of jpillora/backoff you should call time.Sleep manually to wait for calculated duration. b.Duration just calculates the time you need to wait.
But time.Sleep is never called.
And even after fixing this, the problem still occurs with filesystem formatting.
If you try to format filesystem right after the status become attached, it fails because /dev/xvdf is not yet ready.
You should need to give enough amount of time for the device to be ready.
the file /dev/xvdf does not exist and no size was specified
The text was updated successfully, but these errors were encountered:
According to README of
jpillora/backoff
you should calltime.Sleep
manually to wait for calculated duration.b.Duration
just calculates the time you need to wait.But
time.Sleep
is never called.etcd3-bootstrap/ebs.go
Lines 81 to 102 in 80311f3
https://github.com/jpillora/backoff/blob/1.0.0/README.md#example-using-net-package
And even after fixing this, the problem still occurs with filesystem formatting.
If you try to format filesystem right after the status become attached, it fails because
/dev/xvdf
is not yet ready.You should need to give enough amount of time for the device to be ready.
The text was updated successfully, but these errors were encountered: