We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9d48cc commit fe6bb85Copy full SHA for fe6bb85
entraid/src/main/java/redis/clients/authentication/entraid/AzureTokenAuthConfigBuilder.java
@@ -109,7 +109,10 @@ public static AzureTokenAuthConfigBuilder from(AzureTokenAuthConfigBuilder sampl
109
.maxAttemptsToRetry(tokenManagerConfig.getRetryPolicy().getMaxAttempts())
110
.delayInMsToRetry(tokenManagerConfig.getRetryPolicy().getdelayInMs())
111
.identityProviderConfig(tokenAuthConfig.getIdentityProviderConfig());
112
+
113
+ builder.defaultAzureCredential = sample.defaultAzureCredential;
114
builder.scopes = sample.scopes;
115
+ builder.tokenRequestExecTimeoutInMs = sample.tokenRequestExecTimeoutInMs;
116
return builder;
117
}
118
0 commit comments