Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/v/security/oidc_service.cc
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ struct service::impl {
}

ss::future<> start() {
auto holder = _gate.hold();
co_await update();
ssx::spawn_with_gate(_gate, [this] { return update(); });
return ss::now();

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it just the 5s delay that causes the failed startup? I.e., does that lead to a timeout elsewhere?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a timeout in config_manager awaiting controller leadership. This timeout is preventing controller leadership election from forming.

}
ss::future<> stop() {
_jwks_refresh.cancel();
Expand Down