You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let env = options.credential_options.credential_options.env();
71
-
let endpoint = env.var(OIDC_VARIABLE_NAME).map_err(|err| azure_core::Error::full(ErrorKind::Credential, err,format!("no value for environment variable {OIDC_VARIABLE_NAME}. This should be set by Azure Pipelines")))?;
71
+
let endpoint = env
72
+
.var(OIDC_VARIABLE_NAME)
73
+
.map_err(|err| azure_core::Error::full(
74
+
ErrorKind::Credential,
75
+
err,
76
+
format!("no value for environment variable {OIDC_VARIABLE_NAME}. This should be set by Azure Pipelines"),
0 commit comments