diff --git a/tools/github-team-user-store/GitHubTeamUserStore/GitHubTeamUserStore/Program.cs b/tools/github-team-user-store/GitHubTeamUserStore/GitHubTeamUserStore/Program.cs index d1d0526993e..49117d263bc 100644 --- a/tools/github-team-user-store/GitHubTeamUserStore/GitHubTeamUserStore/Program.cs +++ b/tools/github-team-user-store/GitHubTeamUserStore/GitHubTeamUserStore/Program.cs @@ -11,19 +11,19 @@ static async Task Main(string[] args) { var teamUserBlobStorageUriOption = new Option (name: "--teamUserBlobStorageURI", - description: "The team/user blob storage URI including the SAS."); + description: "The team/user blob storage URI."); teamUserBlobStorageUriOption.AddAlias("-tUri"); teamUserBlobStorageUriOption.IsRequired = true; var userOrgVisibilityBlobStorageUriOption = new Option (name: "--userOrgVisibilityBlobStorageURI", - description: "The user/org blob storage URI including the SAS."); + description: "The user/org blob storage URI."); userOrgVisibilityBlobStorageUriOption.AddAlias("-uUri"); userOrgVisibilityBlobStorageUriOption.IsRequired = true; var repoLabelBlobStorageUriOption = new Option (name: "--repoLabelBlobStorageURI", - description: "The repo/label blob storage URI including the SAS."); + description: "The repo/label blob storage URI."); repoLabelBlobStorageUriOption.AddAlias("-rUri"); repoLabelBlobStorageUriOption.IsRequired = true; diff --git a/tools/github-team-user-store/GitHubTeamUserStore/GitHubTeamUserStore/TeamUserGenerator.cs b/tools/github-team-user-store/GitHubTeamUserStore/GitHubTeamUserStore/TeamUserGenerator.cs index e1f6daa1031..7673f11ca89 100644 --- a/tools/github-team-user-store/GitHubTeamUserStore/GitHubTeamUserStore/TeamUserGenerator.cs +++ b/tools/github-team-user-store/GitHubTeamUserStore/GitHubTeamUserStore/TeamUserGenerator.cs @@ -22,8 +22,8 @@ public class TeamUserGenerator /// teams is less than 1/10th of that. The team/user data is serialized into json and stored in azure blob storage. /// /// Authenticated GitHubEventClient - /// The URI, including SAS, of the team/user blob storage URI - /// The URI, including SAS, of the user/org visibility blob + /// The URI of the team/user blob storage URI + /// The URI of the user/org visibility blob /// true if everything stored successfully, false otherwise public static async Task GenerateAndStoreTeamUserAndOrgData(GitHubEventClient gitHubEventClient, string teamUserBlobStorageUri, @@ -160,7 +160,7 @@ private static async Task VerifyStoredTeamUsers(GitHubEventClient gitHubEv /// to generate the org visibility data. /// /// Authenticated GitHubEventClient - /// The URI, including SAS, of the user/org visibility blob + /// The URI of the user/org visibility blob /// public static async Task GenerateAndStoreUserOrgData(GitHubEventClient gitHubEventClient, string userOrgVisibilityBlobStorageUri,