Skip to content

Commit

Permalink
#432: Fix localhost ip address
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Jan 13, 2025
1 parent ad11849 commit f66d2c7
Show file tree
Hide file tree
Showing 3 changed files with 441 additions and 435 deletions.
4 changes: 4 additions & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@ Code name:
* #411: Removed usage of exasol-bucketfs
* #425: Fixed type checks found by MyPy
* #423: Updated formatting

## Bugs

* #432: Fixed localhost ip address
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def run_task(self):
database_host = self.external_exasol_db_host
if (
self.external_exasol_db_host == "localhost"
or self.external_exasol_db_host == "127.0.01"
or self.external_exasol_db_host == "127.0.0.1"
):
database_host = self.network_info.gateway
self.setup_database()
Expand Down
Loading

0 comments on commit f66d2c7

Please sign in to comment.