Skip to content

Commit

Permalink
Remove reference to uninitialized variable (#3295)
Browse files Browse the repository at this point in the history
Co-authored-by: narrieta@microsoft <narrieta>
  • Loading branch information
narrieta authored Jan 10, 2025
1 parent 029e5b9 commit 0860a38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _verify_dns_request_to_wireserver(should_succeed: bool) -> None:
if succeeded:
raise Exception(f"Error -- unprivileged user:({current_user}) could connect to wireserver port 53, make sure the firewall rules are set correctly")
else:
raise Exception(f"Cannot issue a DNS request as user '{current_user}'), make sure the firewall rules are set correctly {e}")
raise Exception(f"Cannot issue a DNS request as user '{current_user}'), make sure the firewall rules are set correctly [DNS request timed out]")

@staticmethod
def _verify_http_request_to_wireserver(should_succeed: bool) -> None:
Expand Down

0 comments on commit 0860a38

Please sign in to comment.