Skip to content

Commit

Permalink
fix(arangodb): increase timeout value
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jul 24, 2024
1 parent c3c1e24 commit c5050b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arangodb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub fn start(_args: String) -> FnResult<String> {
.with_exec(vec![
"overmind start -f Procfile --daemonize || devbox run overmind restart arangodb",
])?
.wait_on(port.parse()?, Some(10))?
.wait_on(port.parse()?, Some(60000 * 10))?
.with_exec(vec!["overmind", "status"])?
.stdout()?;
Ok(stdout)
Expand Down

0 comments on commit c5050b3

Please sign in to comment.