Skip to content

Commit

Permalink
Merge pull request #37 from snowflakedb/noJwtToken
Browse files Browse the repository at this point in the history
Stop logging JWT token
  • Loading branch information
sfc-gh-japatel authored Mar 4, 2020
2 parents 1775328 + 30c83c5 commit cc467cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snowflake/ingest/utils/tokentools.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def get_token(self) -> Text:

# Regenerate the actual token
self.token = jwt.encode(payload, self.private_key, algorithm=SecurityManager.ALGORITHM)
logger.info("New Token is %s", self.token)
logger.info("New Token created")

return self.token.decode('utf-8')

Expand Down

0 comments on commit cc467cc

Please sign in to comment.