Skip to content

Commit 10852a8

Browse files
committed
- fix missing assignment
1 parent ee60a45 commit 10852a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entraid/src/main/java/redis/clients/authentication/entraid/EntraIDTokenAuthConfigBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class EntraIDTokenAuthConfigBuilder extends TokenAuthConfig.Builder
2727
private Set<String> scopes;
2828
private ServicePrincipalAccess accessWith;
2929
private ManagedIdentityInfo mii;
30-
Supplier<IAuthenticationResult> customEntraIdAuthenticationSupplier;
30+
private Supplier<IAuthenticationResult> customEntraIdAuthenticationSupplier;
3131

3232
public EntraIDTokenAuthConfigBuilder() {
3333
this.expirationRefreshRatio(DEFAULT_EXPIRATION_REFRESH_RATIO)
@@ -72,7 +72,7 @@ public EntraIDTokenAuthConfigBuilder userAssignedManagedIdentity(
7272

7373
public EntraIDTokenAuthConfigBuilder customEntraIdAuthenticationSupplier(
7474
Supplier<IAuthenticationResult> customEntraIdAuthenticationSupplier) {
75-
75+
this.customEntraIdAuthenticationSupplier = customEntraIdAuthenticationSupplier;
7676
return this;
7777
}
7878

0 commit comments

Comments
 (0)