Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SEP-10 clientFinder bug #1391

Merged
merged 1 commit into from
Jun 17, 2024
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
Fix clientFinder bug
  • Loading branch information
Ifropc committed Jun 17, 2024
commit e649a7c8a60c300a5ac59517e4c75b2d9430cd2a
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Sep1Service sep1Service(Sep1Config sep1Config) throws IOException, InvalidConfig
}

@Bean
@ConditionalOnAnySepsEnabled(seps = {"sep6", "sep24"})
@ConditionalOnAnySepsEnabled(seps = {"sep6", "sep10", "sep24"})
ClientFinder clientFinder(Sep10Config sep10Config, ClientsConfig clientsConfig) {
return new ClientFinder(sep10Config, clientsConfig);
}
Expand Down
Loading