slow down tfce polling to 1s

Signed-off-by: Paul Thrasher <pthrasher@hashicorp.com>
This commit is contained in:
Paul Thrasher 2019-09-30 14:22:15 -07:00
parent 4e308ef362
commit f2ef8ef317
No known key found for this signature in database
GPG Key ID: D4765F9CA4D82951
1 changed files with 1 additions and 1 deletions

View File

@ -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.