Skip to content

Commit

Permalink
Merge pull request #756 from ImageMarkup/remove-logger-exception
Browse files Browse the repository at this point in the history
Remove the bad zip download token log statement
  • Loading branch information
danlamanna committed Aug 25, 2023
2 parents cad89ff + e7346fd commit a25f98c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion isic/zip_download/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def authenticate(self, request: HttpRequest, key: str) -> dict:
try:
token_dict = TimestampSigner().unsign_object(key, max_age=timedelta(days=1))
except BadSignature:
logger.exception("Bad zip download token passed")
raise AuthenticationError

token_dict["token"] = key
Expand Down

0 comments on commit a25f98c

Please sign in to comment.