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
Accept custom interceptors in ConfigClient and AsyncConfigClient
- Adds `interceptors: list[Any] | None = None` to both `ConfigClient` and `AsyncConfigClient` for injecting logging, tracing, or metrics interceptors without monkeypatching
- For `ConfigClient`, user interceptors are placed outermost in the `grpc.intercept_channel` chain (before the internal auth interceptor)
- For `AsyncConfigClient`, interceptors are forwarded to the `grpc.aio` channel constructor
Closes#68
0 commit comments