Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/worker/tasks/bundle_analysis_processor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import logging
from typing import Any, cast

import sentry_sdk
from celery.exceptions import CeleryError, SoftTimeLimitExceeded

from app import celery_app
Expand Down Expand Up @@ -35,6 +36,7 @@ class BundleAnalysisProcessorTask(
):
max_retries = BUNDLE_ANALYSIS_PROCESSOR_MAX_RETRIES

@sentry_sdk.trace
def run_impl(
self,
db_session,
Expand Down
Loading