Skip to content

Commit

Permalink
increase timeout to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Schmidt committed Jan 9, 2024
1 parent d0c20b8 commit 959f2b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ func TestYamlToConf(t *testing.T) {
version := getVersion(tf.Arguments)
id := runServer(version, confPath, dockerClient, t, tf)

time.Sleep(time.Second * 5) // need this to allow logs to accumulate
time.Sleep(time.Second * 10) // need this to allow logs to accumulate

stopServer(id, dockerClient)
checkContainerLogs(id, t, tf, tmpServerLogPath)
Expand Down Expand Up @@ -712,7 +712,7 @@ func TestConfToYaml(t *testing.T) {
version := getVersion(tf.Arguments)
id := runServer(version, finalConfPath, dockerClient, t, tf)

time.Sleep(time.Second * 5) // need this to allow logs to accumulate
time.Sleep(time.Second * 10) // need this to allow logs to accumulate

stopServer(id, dockerClient)
checkContainerLogs(id, t, tf, tmpServerLogPath)
Expand Down

0 comments on commit 959f2b1

Please sign in to comment.