slow down tfce polling to 1s
Signed-off-by: Paul Thrasher <pthrasher@hashicorp.com>
This commit is contained in:
parent
4e308ef362
commit
f2ef8ef317
|
@ -251,7 +251,7 @@ func (b *Remote) costEstimate(stopCtx, cancelCtx context.Context, op *backend.Op
|
|||
return stopCtx.Err()
|
||||
case <-cancelCtx.Done():
|
||||
return cancelCtx.Err()
|
||||
case <-time.After(500 * time.Millisecond):
|
||||
case <-time.After(1 * time.Second):
|
||||
}
|
||||
|
||||
// Retrieve the cost estimate to get its current status.
|
||||
|
|
Loading…
Reference in New Issue