Skip to content

Commit

Permalink
Remove some leftover debug print in bluesky integration
Browse files Browse the repository at this point in the history
  • Loading branch information
mhagander committed Dec 3, 2024
1 parent a40d58a commit 5d66a8c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion postgresqleu/util/messaging/bluesky.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ def bsjwt(self):
if 'accessjwt' in self.providerconfig:
# If the access token expires within 30 minutes, refresh it!
if datetime.fromtimestamp(self.providerconfig['accesstokenexpires']) < datetime.utcnow() + timedelta(minutes=30):
print("Bluesky access token expired, refreshing")
r = requests.post(
'https://bsky.social/xrpc/com.atproto.server.refreshSession',
headers={'Authorization': 'Bearer {}'.format(self.providerconfig['refreshjwt'])},
Expand Down

0 comments on commit 5d66a8c

Please sign in to comment.