Increase retry limit on dnstest/server.go (#20810)

Signed-off-by: Alexander Scheel <alex.scheel@hashicorp.com>
This commit is contained in:
Alexander Scheel 2023-05-26 10:33:21 -04:00 committed by GitHub
parent ac2af5cd24
commit 34804c6817
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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