Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr0p42 committed Feb 23, 2024
2 parents 258e345 + 3ef0a48 commit 9a27428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion naas_python/utils/domains_base/authorization.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def _start_http_server(self, start_port) -> AuthenticatorBaseServer:
for port in range(start_port, start_port + 1000):
try:
self._server = AuthenticatorBaseServer(
"localhost", self.port, timeout=self._timeout
"0.0.0.0", self.port, timeout=self._timeout
)
logging.debug(f"HTTP server started on port {self.port}.")
self._redirect_uri = f"http://localhost:{port}"
Expand Down

0 comments on commit 9a27428

Please sign in to comment.