Skip to content

Commit

Permalink
OIDC tenant SPI default priority changed (helidon-io#6127)
Browse files Browse the repository at this point in the history
Signed-off-by: David Kral <[email protected]>
  • Loading branch information
Verdent authored Feb 9, 2023
1 parent 1e51881 commit bb360fc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, 2022 Oracle and/or its affiliates.
* Copyright (c) 2018, 2023 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -253,10 +253,10 @@ public static final class Builder implements io.helidon.common.Builder<Builder,

private final HelidonServiceLoader.Builder<TenantConfigProvider> tenantConfigProviders = HelidonServiceLoader
.builder(ServiceLoader.load(TenantConfigProvider.class))
.defaultPriority(BUILDER_PRIORITY);
.defaultPriority(DEFAULT_PRIORITY);
private final HelidonServiceLoader.Builder<TenantIdProvider> tenantIdProviders = HelidonServiceLoader
.builder(ServiceLoader.load(TenantIdProvider.class))
.defaultPriority(BUILDER_PRIORITY);
.defaultPriority(DEFAULT_PRIORITY);
private boolean optional = false;
private OidcConfig oidcConfig;
private List<TenantIdFinder> tenantIdFinders;
Expand Down

0 comments on commit bb360fc

Please sign in to comment.