Skip to content

Commit 0ee602f

Browse files
authored
update TSG links to point to java docs (Azure#27919)
1 parent 3f3050c commit 0ee602f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

sdk/identity/azure-identity/src/main/java/com/azure/identity/EnvironmentCredential.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public Mono<AccessToken> getToken(TokenRequestContext request) {
131131
"EnvironmentCredential authentication unavailable."
132132
+ " Environment variables are not fully configured."
133133
+ "To mitigate this issue, please refer to the troubleshooting guidelines here at"
134-
+ " https://aka.ms/azsdk/net/identity/environmentcredential/troubleshoot")));
134+
+ " https://aka.ms/azsdk/java/identity/environmentcredential/troubleshoot")));
135135
} else {
136136
return tokenCredential.getToken(request);
137137
}

sdk/identity/azure-identity/src/main/java/com/azure/identity/ManagedIdentityCredential.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public Mono<AccessToken> getToken(TokenRequestContext request) {
105105
new CredentialUnavailableException("ManagedIdentityCredential authentication unavailable. "
106106
+ "The Target Azure platform could not be determined from environment variables."
107107
+ "To mitigate this issue, please refer to the troubleshooting guidelines here at"
108-
+ " https://aka.ms/azsdk/net/identity/managedidentitycredential/troubleshoot")));
108+
+ " https://aka.ms/azsdk/java/identity/managedidentitycredential/troubleshoot")));
109109
}
110110
return managedIdentityServiceCredential.authenticate(request)
111111
.doOnSuccess(t -> LOGGER.info("Azure Identity => Managed Identity environment: {}",

sdk/identity/azure-identity/src/main/java/com/azure/identity/implementation/IdentityClient.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ public Mono<MsalToken> authenticateWithUsernamePassword(TokenRequestContext requ
723723
}
724724
)).onErrorMap(t -> new ClientAuthenticationException("Failed to acquire token with username and "
725725
+ "password. To mitigate this issue, please refer to the troubleshooting guidelines "
726-
+ "here at https://aka.ms/azsdk/net/identity/usernamepasswordcredential/troubleshoot",
726+
+ "here at https://aka.ms/azsdk/java/identity/usernamepasswordcredential/troubleshoot",
727727
null, t)).map(MsalToken::new);
728728
}
729729

@@ -848,7 +848,7 @@ public Mono<MsalToken> authenticateWithVsCodeCredential(TokenRequestContext requ
848848
new CredentialUnavailableException("VsCodeCredential "
849849
+ "authentication unavailable. ADFS tenant/authorities are not supported. "
850850
+ "To mitigate this issue, please refer to the troubleshooting guidelines here at "
851-
+ "https://aka.ms/azsdk/net/identity/vscodecredential/troubleshoot")));
851+
+ "https://aka.ms/azsdk/java/identity/vscodecredential/troubleshoot")));
852852
}
853853
VisualStudioCacheAccessor accessor = new VisualStudioCacheAccessor();
854854

@@ -875,7 +875,7 @@ public Mono<MsalToken> authenticateWithVsCodeCredential(TokenRequestContext requ
875875
new CredentialUnavailableException("Failed to acquire token with"
876876
+ " VS code credential."
877877
+ " To mitigate this issue, please refer to the troubleshooting guidelines here at "
878-
+ "https://aka.ms/azsdk/net/identity/vscodecredential/troubleshoot", t)));
878+
+ "https://aka.ms/azsdk/java/identity/vscodecredential/troubleshoot", t)));
879879
}
880880
return Mono.error(new ClientAuthenticationException("Failed to acquire token with"
881881
+ " VS code credential", null, t));

0 commit comments

Comments
 (0)