Skip to content

Commit

Permalink
Update Azure PaaS Worker Role example to use the provided `Cancellati…
Browse files Browse the repository at this point in the history
…onToken` (#3618)
  • Loading branch information
augustoproiete authored and Aaronontheweb committed Oct 16, 2018
1 parent b01ee32 commit e408e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/articles/intro/use-case-and-deployment-scenarios.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ namespace MyActorWorkerRole

while (!cancellationToken.IsCancellationRequested)
{
await Task.Delay(1000);
await Task.Delay(1000, cancellationToken);
}
}
}
Expand Down

0 comments on commit e408e3d

Please sign in to comment.