Skip to content

Commit 1ab8f34

Browse files
Increased the timeouts in the end-to-end tests
Signed-off-by: Norman Jordan <norman.jordan@improving.com>
1 parent 782a6cc commit 1ab8f34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e-test/src/test/scala/org/opensearch/spark/e2e/EndToEndITSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class EndToEndITSuite extends AnyFlatSpec with TableDrivenPropertyChecks with Be
7575
val dockerProcess = new ProcessBuilder("docker", "compose", "up", "-d")
7676
.directory(new File(DOCKER_INTEG_DIR))
7777
.start()
78-
dockerProcess.waitFor(5, TimeUnit.MINUTES)
78+
dockerProcess.waitFor(10, TimeUnit.MINUTES)
7979

8080
if (dockerProcess.exitValue() != 0) {
8181
logError("Unable to start docker cluster")
@@ -97,7 +97,7 @@ class EndToEndITSuite extends AnyFlatSpec with TableDrivenPropertyChecks with Be
9797
val dockerProcess = new ProcessBuilder("docker", "compose", "down")
9898
.directory(new File(DOCKER_INTEG_DIR))
9999
.start()
100-
dockerProcess.waitFor(2, TimeUnit.MINUTES)
100+
dockerProcess.waitFor(5, TimeUnit.MINUTES)
101101

102102
if (dockerProcess.exitValue() != 0) {
103103
logError("Unable to stop docker cluster")

0 commit comments

Comments
 (0)