MCPcopy
hub / github.com/getsentry/sentry / is_group_finished

Function is_group_finished

src/sentry/reprocessing2.py:709–715  ·  view source on GitHub ↗

Checks whether a group has finished reprocessing.

(group_id: int)

Source from the content-addressed store, hash-verified

707
708
709def is_group_finished(group_id: int) -> bool:
710 """
711 Checks whether a group has finished reprocessing.
712 """
713
714 pending, _ = get_progress(group_id)
715 return pending <= 0
716
717
718def get_progress(group_id: int, project_id: int | None = None) -> tuple[int, Any | None]:

Calls 1

get_progressFunction · 0.85