Skip to content

Commit 138b724

Browse files
authored
Merge pull request #96072 from KranthiPakala-MSFT/patch-24
(AzureCXP) fixes MicrosoftDocs/azure-docs#42782
2 parents 62fcb67 + bbbda6f commit 138b724

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/data-factory/quickstart-create-data-factory-dot-net.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ Console.WriteLine("Pipeline run ID: " + runResponse.RunId);
282282
pipelineRun = client.PipelineRuns.Get(
283283
resourceGroup, dataFactoryName, runResponse.RunId);
284284
Console.WriteLine("Status: " + pipelineRun.Status);
285-
if (pipelineRun.Status == "InProgress")
285+
if (pipelineRun.Status == "InProgress" || pipelineRun.Status == "Queued")
286286
System.Threading.Thread.Sleep(15000);
287287
else
288288
break;
@@ -440,4 +440,4 @@ client.Factories.Delete(resourceGroup, dataFactoryName);
440440

441441
## Next steps
442442

443-
The pipeline in this sample copies data from one location to another location in an Azure blob storage. Go through the [tutorials](tutorial-copy-data-dot-net.md) to learn about using Data Factory in more scenarios.
443+
The pipeline in this sample copies data from one location to another location in an Azure blob storage. Go through the [tutorials](tutorial-copy-data-dot-net.md) to learn about using Data Factory in more scenarios.

0 commit comments

Comments
 (0)