We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7656c81 commit 6deea1eCopy full SHA for 6deea1e
src/sentry/integrations/tasks/migrate_repo.py
@@ -25,6 +25,7 @@
25
times=5,
26
delay=60 * 5,
27
),
28
+ processing_deadline_duration=60,
29
30
)
31
@retry(exclude=(Integration.DoesNotExist, Repository.DoesNotExist, Organization.DoesNotExist))
src/sentry/notifications/utils/tasks.py
@@ -106,7 +106,7 @@ def async_send_notification(
106
silo_mode=SiloMode.REGION,
107
queue="notifications",
108
taskworker_config=TaskworkerConfig(
109
- namespace=notifications_tasks, processing_deadline_duration=20
+ namespace=notifications_tasks, processing_deadline_duration=30
110
111
112
def _send_notification(notification_class_name: str, arg_list: Iterable[Mapping[str, Any]]) -> None:
0 commit comments