MCPcopy
hub / github.com/tirth8205/code-review-graph / _run_temporal_resolver

Function _run_temporal_resolver

code_review_graph/incremental.py:85–94  ·  view source on GitHub ↗

Run the Temporal workflow/activity call resolver, swallowing any failure so build never fails because of it. Returns stats or None on error.

(store: GraphStore)

Source from the content-addressed store, hash-verified

83
84
85def _run_temporal_resolver(store: GraphStore) -> Optional[dict]:
86 """Run the Temporal workflow/activity call resolver, swallowing any failure so
87 build never fails because of it. Returns stats or None on error.
88 """
89 try:
90 from .temporal_resolver import resolve_temporal_calls
91 return resolve_temporal_calls(store)
92 except Exception as exc: # noqa: BLE001 - best-effort post-pass
93 logger.warning("Temporal resolver failed: %s", exc)
94 return None
95
96# Default ignore patterns (in addition to .gitignore).
97#

Callers 2

full_buildFunction · 0.85
incremental_updateFunction · 0.85

Calls 1

resolve_temporal_callsFunction · 0.85

Tested by

no test coverage detected