Skip to content

Commit

Permalink
remove async from declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid committed Sep 30, 2024
1 parent 078e127 commit 35c7023
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace FaultOrchestrators
public static class FaultyOrchestrators
{
[Function(nameof(OOMOrchestrator))]
public static async Task<string> OOMOrchestrator(
public static Task<string> OOMOrchestrator(
[OrchestrationTrigger] TaskOrchestrationContext context)
{
// this orchestrator is not deterministic, on purpose.
Expand Down Expand Up @@ -43,7 +43,7 @@ public static async Task<string> OOMOrchestrator(
}

[Function(nameof(ProcessExitOrchestrator))]
public static async Task<string> ProcessExitOrchestrator(
public static Task<string> ProcessExitOrchestrator(
[OrchestrationTrigger] TaskOrchestrationContext context)
{
// this orchestrator is not deterministic, on purpose.
Expand Down Expand Up @@ -72,7 +72,7 @@ public static async Task<string> ProcessExitOrchestrator(
}

[Function(nameof(TimeoutOrchestrator))]
public static async Task<string> TimeoutOrchestrator(
public static Task<string> TimeoutOrchestrator(
[OrchestrationTrigger] TaskOrchestrationContext context)
{
// this orchestrator is not deterministic, on purpose.
Expand Down

0 comments on commit 35c7023

Please sign in to comment.