Skip to content

Commit

Permalink
handling the case of running Docker-DB
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Mar 22, 2024
1 parent 220f1fb commit c8c9129
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 @@ -153,7 +153,7 @@ def is_itde_running(conf: Secrets) -> Tuple[bool, bool]:
return False, False

# Check the existence and the status of the container using the Docker API.
with (ContextDockerClient() as docker_client):
with ContextDockerClient() as docker_client:
if docker_client.containers.list(all=True, filters={"name": container_name}):
container = docker_client.containers.get(container_name)
# Here we use a slightly bloated definition of running - the ITDE should
Expand Down

0 comments on commit c8c9129

Please sign in to comment.