Skip to content

Commit f33405d

Browse files
Update databricks-sdk-java/src/main/java/com/databricks/sdk/core/oauth/AzureDevOpsIDTokenSource.java
Co-authored-by: Renaud Hartert <[email protected]>
1 parent 770a6f7 commit f33405d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

databricks-sdk-java/src/main/java/com/databricks/sdk/core/oauth/AzureDevOpsIDTokenSource.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ private String validateEnvironmentVariable(String varName) {
9595
if (varName.equals("SYSTEM_ACCESSTOKEN")) {
9696
throw new DatabricksException(
9797
String.format(
98-
"Missing %s, if calling from Azure DevOps Pipeline, please set this env var following https://learn.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=azure-devops&tabs=yaml#systemaccesstoken",
98+
"Missing environment variable %s, if calling from Azure DevOps Pipeline, please set this env var following https://learn.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=azure-devops&tabs=yaml#systemaccesstoken",
9999
varName));
100100
}
101101
throw new DatabricksException(
102-
String.format("Missing %s, likely not calling from Azure DevOps Pipeline", varName));
102+
String.format("Missing environment variable %s, likely not calling from Azure DevOps Pipeline", varName));
103103
}
104104
return value;
105105
}

0 commit comments

Comments
 (0)