You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. _timings type: Dict[str, list] -> Dict[str, Deque[float]] to match
actual deque storage. Added Deque to typing imports.
2. set_user_context: email now only sent to Sentry when SENTRY_SEND_PII
is explicitly enabled. Was bypassing the PII flag we added.
3. startup_checks: added SENTRY_SEND_PII and SENTRY_INCLUDE_LOCAL_VARS
to OPTIONAL_VARS so missing config gets logged at startup.
4. get_metrics/get_stats: return type -> Dict[str, Any] for precision.
5. _total_indexing_ops: persistent counter replaces len(deque) which
was capped at 100. Dashboard now shows true total.
Skipped: lazy singleton (4th time), print->logger in init_sentry
(runs before logger is ready at bootstrap).
284 tests pass.
0 commit comments