fix: remove broken tracing middleware

This commit is contained in:
Emilio Garcia 2025-10-07 13:31:13 -04:00
parent 597d405e13
commit 5f827fd4ed
4 changed files with 18 additions and 86 deletions

View file

@ -359,6 +359,12 @@ class Stack:
await refresh_registry_once(impls)
self.impls = impls
def get_impls(self) -> dict[Api, Any]:
"""safely access impls without raising an exception"""
if self.impls is None:
return {}
return self.impls
def create_registry_refresh_task(self):
assert self.impls is not None, "Must call initialize() before starting"