Increase retry limit on dnstest/server.go (#20810)
Signed-off-by: Alexander Scheel <alex.scheel@hashicorp.com>
This commit is contained in:
parent
ac2af5cd24
commit
34804c6817
|
@ -196,7 +196,7 @@ func (ts *TestServer) PushConfig() {
|
|||
require.NoError(ts.t, err, "failed pushing updated configuration to container")
|
||||
|
||||
// Wait until our config has taken.
|
||||
corehelpers.RetryUntil(ts.t, 3*time.Second, func() error {
|
||||
corehelpers.RetryUntil(ts.t, 15*time.Second, func() error {
|
||||
// bind reloads based on file mtime, touch files before starting
|
||||
// to make sure it has been updated more recently than when the
|
||||
// last update was written. Then issue a new SIGHUP.
|
||||
|
|
Loading…
Reference in New Issue