Skip to content

Commit

Permalink
chore: log error if need be (#23171)
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra authored Jun 22, 2024
1 parent 916c4c5 commit 0e7f735
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions posthog/tasks/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ def invalid_web_replays() -> None:
)
count = results[0][i]
gauge.set(count)
except:
pass
except Exception as e:
logger.error("Failed to run invalid web replays task", error=e, inc_exc_info=True)


KNOWN_CELERY_TASK_IDENTIFIERS = {
Expand Down

0 comments on commit 0e7f735

Please sign in to comment.