You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename method is_itde_running() to is_itde_ready().
Refactor function is_itde_running() to return an enum rather than a tuple (see below)
classItdeContainerStatus(Enum):
EXISTS=0RUNNING=1
This would also enable to handle the case not container_name or not network_name more explicitly by returning None or having an explicit enum value UNKNOWN or INVALID.
The text was updated successfully, but these errors were encountered:
See also
Acceptance criteria
In file exasol/nb_connector/itde_manager.py
start_itde()
torestart_itde()
?is_itde_running()
tois_itde_ready()
.is_itde_running()
to return an enum rather than a tuple (see below)This would also enable to handle the case
not container_name or not network_name
more explicitly by returningNone
or having an explicit enum valueUNKNOWN
orINVALID
.The text was updated successfully, but these errors were encountered: