Skip to content

Commit

Permalink
fix for 9cd91a7
Browse files Browse the repository at this point in the history
  • Loading branch information
maldag committed Sep 10, 2024
1 parent 9357915 commit cf3ac82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def start_http_server(
# Handle default case for dashboard address
# In case dashboard_address is given, e.g. ":8787"
# the address is empty and it is intended to listen to all interfaces
if dashboard_address is not None and http_address["address"] == "":
if dashboard_address is None and http_address["address"] == "":
http_address["address"] = "0.0.0.0"

if http_address["address"] is None or http_address["address"] == "":
Expand Down

0 comments on commit cf3ac82

Please sign in to comment.