Skip to content

Commit 3a96030

Browse files
committed
when falling back, be explicit about what to use
1 parent ff47da7 commit 3a96030

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shared/Microsoft.AzureRepos/AzureReposHostProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ private static string GetAccountNameForCredentialQuery(InputArguments input)
389389
/// <returns>True if Personal Access Tokens should be used, false otherwise.</returns>
390390
private bool UsePersonalAccessTokens()
391391
{
392-
// Default to using PATs whilst the Azure AT functionality is being tested
392+
// Default to using PATs
393393
const bool defaultValue = true;
394394

395395
if (_context.Settings.TryGetSetting(
@@ -410,7 +410,7 @@ private bool UsePersonalAccessTokens()
410410

411411
default:
412412
_context.Streams.Error.WriteLine(
413-
$"warning: unknown Azure Repos credential type '{valueStr}' - using default option");
413+
$"warning: unknown Azure Repos credential type '{valueStr}' - using PATs");
414414
return defaultValue;
415415
}
416416
}

0 commit comments

Comments
 (0)