Skip to content

Commit

Permalink
Update exasol/nb_connector/itde_manager.py
Browse files Browse the repository at this point in the history
Co-authored-by: Christoph Kuhnke <[email protected]>
  • Loading branch information
ahsimb and ckunki authored Mar 25, 2024
1 parent 6542a09 commit 4d6122f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exasol/nb_connector/itde_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def is_itde_running(conf: Secrets) -> Tuple[bool, bool]:
container = docker_client.containers.get(container_name)
is_ready = (container.status == 'running' and not
_is_current_container_not_in_db_network(network_name))
return True, is_ready
return True, is_ready
return False, False


Expand Down

0 comments on commit 4d6122f

Please sign in to comment.