Skip to content

Commit 4d84241

Browse files
authored
Remove SAS from comments and option help (#8328)
1 parent 914088e commit 4d84241

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

tools/github-team-user-store/GitHubTeamUserStore/GitHubTeamUserStore/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ static async Task Main(string[] args)
1111
{
1212
var teamUserBlobStorageUriOption = new Option<string>
1313
(name: "--teamUserBlobStorageURI",
14-
description: "The team/user blob storage URI including the SAS.");
14+
description: "The team/user blob storage URI.");
1515
teamUserBlobStorageUriOption.AddAlias("-tUri");
1616
teamUserBlobStorageUriOption.IsRequired = true;
1717

1818
var userOrgVisibilityBlobStorageUriOption = new Option<string>
1919
(name: "--userOrgVisibilityBlobStorageURI",
20-
description: "The user/org blob storage URI including the SAS.");
20+
description: "The user/org blob storage URI.");
2121
userOrgVisibilityBlobStorageUriOption.AddAlias("-uUri");
2222
userOrgVisibilityBlobStorageUriOption.IsRequired = true;
2323

2424
var repoLabelBlobStorageUriOption = new Option<string>
2525
(name: "--repoLabelBlobStorageURI",
26-
description: "The repo/label blob storage URI including the SAS.");
26+
description: "The repo/label blob storage URI.");
2727
repoLabelBlobStorageUriOption.AddAlias("-rUri");
2828
repoLabelBlobStorageUriOption.IsRequired = true;
2929

tools/github-team-user-store/GitHubTeamUserStore/GitHubTeamUserStore/TeamUserGenerator.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ public class TeamUserGenerator
2222
/// teams is less than 1/10th of that. The team/user data is serialized into json and stored in azure blob storage.
2323
/// </summary>
2424
/// <param name="gitHubEventClient">Authenticated GitHubEventClient</param>
25-
/// <param name="teamUserBlobStorageUri">The URI, including SAS, of the team/user blob storage URI</param>
26-
/// <param name="userOrgVisibilityBlobStorageUri">The URI, including SAS, of the user/org visibility blob</param>
25+
/// <param name="teamUserBlobStorageUri">The URI of the team/user blob storage URI</param>
26+
/// <param name="userOrgVisibilityBlobStorageUri">The URI of the user/org visibility blob</param>
2727
/// <returns>true if everything stored successfully, false otherwise</returns>
2828
public static async Task<bool> GenerateAndStoreTeamUserAndOrgData(GitHubEventClient gitHubEventClient,
2929
string teamUserBlobStorageUri,
@@ -160,7 +160,7 @@ private static async Task<bool> VerifyStoredTeamUsers(GitHubEventClient gitHubEv
160160
/// to generate the org visibility data.
161161
/// </summary>
162162
/// <param name="gitHubEventClient">Authenticated GitHubEventClient</param>
163-
/// <param name="userOrgVisibilityBlobStorageUri">The URI, including SAS, of the user/org visibility blob</param>
163+
/// <param name="userOrgVisibilityBlobStorageUri">The URI of the user/org visibility blob</param>
164164
/// <returns></returns>
165165
public static async Task<bool> GenerateAndStoreUserOrgData(GitHubEventClient gitHubEventClient,
166166
string userOrgVisibilityBlobStorageUri,

0 commit comments

Comments
 (0)