Skip to content

Commit

Permalink
fixed a typo in a function name.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Mar 25, 2024
1 parent 8206dc8 commit 524e2c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exasol/nb_connector/itde_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def _remove_current_container_from_db_network(conf: Secrets):
if not network_name:
return
with ContextDockerClient() as docker_client:
ip_addresses = _get_ipv4_ddresses()
ip_addresses = _get_ipv4_addresses()
container = ContainerByIp(docker_client).find(ip_addresses)
if not container:
return
Expand All @@ -138,7 +138,7 @@ def _remove_current_container_from_db_network(conf: Secrets):
network.disconnect(container.id)


def _get_ipv4_ddresses():
def _get_ipv4_addresses():
ip_addresses = [ip.ip for ip in IPRetriever().ips()
if ip.is_IPv4 and isinstance(ip.ip, str)]
return ip_addresses
Expand Down

0 comments on commit 524e2c1

Please sign in to comment.