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

Identity API updates July 2020 #13154

Merged
merged 12 commits into from
Jul 22, 2020
Prev Previous commit
Next Next commit
update identity versions
  • Loading branch information
g2vinay committed Jul 15, 2020
commit 4a6da7e21afa81d1e4d9535512940d695fe6fa40
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ public SharedTokenCacheCredentialBuilder allowUnencryptedCache() {
*/
public SharedTokenCacheCredential build() {
return new SharedTokenCacheCredential(username, clientId, tenantId,
identityClientOptions.enablePersistentCache(true));
identityClientOptions.enablePersistentCache());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to update the SharedTokenCacheCredential to also take an AuthenticationRecord. See Azure/azure-sdk-for-net#13612. If you'd like we can merge this first and add this in a second PR, but we need to add it before the release.

}
}