Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed clear-text logging of sensitive information. #7961

Merged
merged 3 commits into from
Jul 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
removed login data being returned when error occurs with connect_vpn.…
…py connect_with_key function
  • Loading branch information
PeterChung241 committed Jul 20, 2023
commit e78b3b111b06dad059a987202ad2b1eb51aa8b3a
2 changes: 1 addition & 1 deletion packages/grid/vpn/connect_vpn.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def connect_with_key(tailscale_host: str, headscale_host: str, authkey: str) ->
report = get_result(json=resp.json())
return json.loads(report)["report"]
except Exception as e:
print("failed to make request", data, e)
print("failed to make request", e)
return ""


Expand Down