Skip to content

Commit

Permalink
remove async from sync task
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid authored Jul 11, 2024
1 parent 4b837b3 commit 8d2223a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/DistributedTraceSample/OpenTelemetry/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public override async Task<string> RunTask(OrchestrationContext context, string

class ExceptionOrchestration : TaskOrchestration<string, string>
{
public override async Task<string> RunTask(OrchestrationContext context, string input)
public override Task<string> RunTask(OrchestrationContext context, string input)
{
throw new Exception(input);
}
Expand Down

0 comments on commit 8d2223a

Please sign in to comment.