File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,6 @@ module = [
131
131
" sentry.search.events.filter" ,
132
132
" sentry.search.snuba.executors" ,
133
133
" sentry.snuba.metrics.query_builder" ,
134
- " sentry.tasks.base" ,
135
134
" sentry.testutils.cases" ,
136
135
" sentry.web.frontend.auth_login" ,
137
136
" sentry_plugins.jira.plugin" ,
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ def __call__(self, decorated_task: Any) -> Any:
64
64
65
65
limited_func = self .create_override (decorated_task )
66
66
if hasattr (decorated_task , "name" ):
67
- limited_func .name = decorated_task .name
67
+ limited_func .name = decorated_task .name # type: ignore[attr-defined]
68
68
return limited_func
69
69
70
70
@@ -234,6 +234,7 @@ def retry(
234
234
if func :
235
235
return retry ()(func )
236
236
237
+ timeout_exceptions : tuple [type [BaseException ], ...]
237
238
timeout_exceptions = (ProcessingDeadlineExceeded , SoftTimeLimitExceeded )
238
239
if not timeouts :
239
240
timeout_exceptions = ()
You can’t perform that action at this time.
0 commit comments