Skip to content

Commit

Permalink
Relaxed notebook and sql shell startup timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiimk committed Sep 10, 2024
1 parent a7d11ce commit 3e1bc4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/cli/src/explore/notebook_server_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ impl NotebookServerImpl {

let docker_host = self.container_runtime.get_runtime_host_addr();
let jupyter_port = jupyter
.wait_for_host_socket(jupyter_port_in_container, Duration::from_secs(10))
.wait_for_host_socket(jupyter_port_in_container, Duration::from_secs(30))
.await
.int_err()?;

Expand Down
2 changes: 1 addition & 1 deletion src/app/cli/src/explore/sql_shell_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl SqlShellImpl {
})?;

container
.wait_for_container(Duration::from_secs(20))
.wait_for_container(Duration::from_secs(30))
.await
.int_err()?;

Expand Down

0 comments on commit 3e1bc4a

Please sign in to comment.