Skip to content

Commit

Permalink
Fix kafka local host setting
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPansino committed Jun 30, 2023
1 parent d449b42 commit 444f0e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testing_support/db_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def kafka_settings():
2. Github Actions
"""

host = "host.docker.internal" if "GITHUB_ACTIONS" in os.environ else "localhost"
host = "host.docker.internal" if "GITHUB_ACTIONS" in os.environ else "127.0.0.1"
instances = 2
settings = [
{
Expand Down

0 comments on commit 444f0e7

Please sign in to comment.