Skip to content

Commit

Permalink
do not log state
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-mkeller committed Jan 31, 2025
1 parent 60b461a commit ac3c287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snowflake/connector/auth/oauth_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
self.redirect_uri = redirect_uri
self.scope = scope
self._state = secrets.token_urlsafe(43)
logger.debug("chose oauth state: %s", self._state)
logger.debug("chose oauth state: %s", "".join("*" for _ in self._state))
self._oauth_token = None
self._protocol = "http"

Expand Down

0 comments on commit ac3c287

Please sign in to comment.