Skip to content

Commit

Permalink
chore: start timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
  • Loading branch information
jeroiraz committed Nov 17, 2022
1 parent aad86cd commit 2141ad4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -134,7 +134,7 @@ task immudbStart {
pb.command("/bin/bash", "immudb/start.sh")
Process proc = pb.start()

proc.waitFor(5, TimeUnit.SECONDS)
proc.waitFor(10, TimeUnit.SECONDS)

if (proc.isAlive()) {
println "immudb has been started."
Expand Down
2 changes: 2 additions & 0 deletions src/test/java/io/codenotary/immudb4j/MultidatabaseTest.java
Expand Up @@ -107,6 +107,7 @@ public void t5() throws VerificationException {
immuClient.closeSession();
}

/*
@Test(testName = "create, unload and delete database")
public void t6() {
immuClient.openSession("defaultdb", "immudb", "immudb");
Expand All @@ -126,4 +127,5 @@ public void t6() {
immuClient.closeSession();
}
*/
}

0 comments on commit 2141ad4

Please sign in to comment.