Skip to content

Commit ca9ad29

Browse files
authored
Merge pull request #51555 from themainframe/patch-1
Fix: Missing close-parenthesis in StorageCredentials setup
2 parents 95eac54 + cc39ee6 commit ca9ad29

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/storage/blobs/storage-encrypt-decrypt-blobs-key-vault.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ In the Main() method, add the following code.
125125
// This is standard code to interact with Blob storage.
126126
StorageCredentials creds = new StorageCredentials(
127127
CloudConfigurationManager.GetSetting("accountName"),
128-
CloudConfigurationManager.GetSetting("accountKey");
128+
CloudConfigurationManager.GetSetting("accountKey")
129+
);
129130
CloudStorageAccount account = new CloudStorageAccount(creds, useHttps: true);
130131
CloudBlobClient client = account.CreateCloudBlobClient();
131132
CloudBlobContainer contain = client.GetContainerReference(CloudConfigurationManager.GetSetting("container"));

0 commit comments

Comments
 (0)