Skip to content

Commit 85c82ec

Browse files
Changes from review
1 parent f360489 commit 85c82ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/storage/blobs/storage-create-geo-redundant-storage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ To complete this tutorial:
4141

4242
- Install [Visual Studio 2022](https://www.visualstudio.com/downloads/) with the **Azure development** workload.
4343

44-
![Azure development (under Web & Cloud)](media/storage-create-geo-redundant-storage/workloads-net-v12.png)
44+
![Screenshot of Visual Studio Azure development workload (under Web & Cloud)](media/storage-create-geo-redundant-storage/workloads-net-v12.png)
4545

4646
# [.NET v11 SDK](#tab/dotnet11)
4747

4848
- Install [Visual Studio 2019](https://www.visualstudio.com/downloads/) with the **Azure development** workload.
4949

50-
![Azure development (under Web & Cloud)](media/storage-create-geo-redundant-storage/workloads.png)
50+
![Screenshot of Visual Studio Azure development workload (under Web & Cloud)](media/storage-create-geo-redundant-storage/workloads.png)
5151

5252
# [Python v12 SDK](#tab/python)
5353

@@ -222,7 +222,7 @@ When the console window launches, the app will get the status of the secondary r
222222

223223
Next, the application enters a loop with a prompt to download the blob, initially reading from primary storage. Press any key to download the blob. If there's a retryable error reading from the primary region, a retry of the read request is performed against the secondary region endpoint. The console output will show when the region switches to secondary.
224224

225-
![Console output secondary request](media/storage-create-geo-redundant-storage/request-secondary-region.png)
225+
![Screenshot of Console output for secondary request](media/storage-create-geo-redundant-storage/request-secondary-region.png)
226226

227227
To exit the loop and clean up resources, press the `Esc` key at the blob download prompt.
228228

@@ -232,7 +232,7 @@ In Visual Studio, press **F5** or select **Start** to begin debugging the applic
232232

233233
A console window launches and the application begins running. The application uploads the **HelloWorld.png** image from the solution to the storage account. The application checks to ensure the image has replicated to the secondary RA-GZRS endpoint. It then begins downloading the image up to 999 times. Each read is represented by a **P** or an **S**. Where **P** represents the primary endpoint and **S** represents the secondary endpoint.
234234

235-
![Console app running](media/storage-create-geo-redundant-storage/figure3.png)
235+
![Screenshot of Console application output](media/storage-create-geo-redundant-storage/figure3.png)
236236

237237
In the sample code, the `RunCircuitBreakerAsync` task in the `Program.cs` file is used to download an image from the storage account using the [DownloadToFileAsync](/dotnet/api/microsoft.azure.storage.blob.cloudblob.downloadtofileasync) method. Prior to the download, an [OperationContext](/dotnet/api/microsoft.azure.cosmos.table.operationcontext) is defined. The operation context defines event handlers that fire when a download completes successfully, or if a download fails and is retrying.
238238

0 commit comments

Comments
 (0)