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 5488606 commit 7ada4b3Copy full SHA for 7ada4b3
sentry_sdk/worker.py
@@ -182,7 +182,7 @@ def __init__(self, queue_size: int = DEFAULT_QUEUE_SIZE) -> None:
182
self._task_for_pid: Optional[int] = None
183
self._loop: Optional[asyncio.AbstractEventLoop] = None
184
# Track active callback tasks so they have a strong reference and can be cancelled on kill
185
- self._active_tasks: set[asyncio.Task] = set()
+ self._active_tasks: set[asyncio.Task[None]] = set()
186
187
@property
188
def is_alive(self) -> bool:
0 commit comments