sansmoraxz commented on code in PR #4055:
URL: https://github.com/apache/iggy/pull/4055#discussion_r3982908339
##########
core/server/src/http/state.rs:
##########
@@ -122,6 +123,17 @@ pub(in crate::http) struct HttpInner {
/// Legacy-parity metric registry served by the scrape route; the router's
/// counting layer holds a clone of its request counter.
pub(in crate::http) metrics: HttpMetrics,
+ /// External authentication callout config. Shared across all handlers.
+ pub(in crate::http) external_auth: Arc<ExternalAuthConfig>,
+ /// Session-scoped permissions for synthetic user IDs (external auth
+ /// inline-grant sessions). Keyed by synthetic `user_id`. Cleaned up on
+ /// session expiry sweep.
+ pub(in crate::http) synthetic_permissions: RefCell<HashMap<u32,
Permissions>>,
Review Comment:
Not relevant anymore
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]