We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d52a48 + fe6bb85 commit a60c0f7Copy full SHA for a60c0f7
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