Skip to content

Commit dd8329e

Browse files
author
Raileen Del Rosario
committed
fixes to failing build issues
1 parent e2cc787 commit dd8329e

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

launcher-csharp/Maestro/Examples/CancelWorkflowInstance.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public static async Task<CancelWorkflowInstanceResponse> CancelInstanceMaestroWo
2121
var client = CreateAuthenticatedClient(basePath, accessToken);
2222
return await client.Maestro.WorkflowInstanceManagement.CancelWorkflowInstanceAsync(accountId, workflowId, workflowInstanceId);
2323
}
24+
2425
//ds-snippet-end:Maestro4Step3
2526

2627
/// <summary>
@@ -34,6 +35,7 @@ private static IamClient CreateAuthenticatedClient(string basePath, string acces
3435
.WithAccessToken(accessToken)
3536
.Build();
3637
}
38+
3739
//ds-snippet-end:Maestro4Step2
3840
}
3941
}

launcher-csharp/Maestro/Examples/PauseWorkflow.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public static async Task<PauseNewWorkflowInstancesSuccess> PauseMaestroWorkflow(
2020
var client = CreateAuthenticatedClient(basePath, accessToken);
2121
return await client.Maestro.Workflows.PauseNewWorkflowInstancesAsync(accountId, workflowId);
2222
}
23+
2324
//ds-snippet-end:Maestro2Step3
2425

2526
/// <summary>
@@ -33,6 +34,7 @@ private static IamClient CreateAuthenticatedClient(string basePath, string acces
3334
.WithAccessToken(accessToken)
3435
.Build();
3536
}
37+
3638
//ds-snippet-end:Maestro2Step2
3739
}
3840
}

launcher-csharp/Maestro/Examples/ResumeWorkflow.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public static async Task<ResumeNewWorkflowInstancesSuccess> ResumeMaestroWorkflo
2020
var client = CreateAuthenticatedClient(basePath, accessToken);
2121
return await client.Maestro.Workflows.ResumePausedWorkflowAsync(accountId, workflowId);
2222
}
23+
2324
//ds-snippet-end:Maestro3Step3
2425

2526
/// <summary>
@@ -33,6 +34,7 @@ private static IamClient CreateAuthenticatedClient(string basePath, string acces
3334
.WithAccessToken(accessToken)
3435
.Build();
3536
}
37+
3638
//ds-snippet-end:Maestro3Step2
3739
}
3840
}

launcher-csharp/Maestro/Examples/TriggerMaestroWorkflow.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ public static async Task<WorkflowsListSuccess> GetMaestroWorkflow(
3232
var client = CreateAuthenticatedClient(basePath, accessToken);
3333
return await client.Maestro.Workflows.GetWorkflowsListAsync(accountId, Status.Active);
3434
}
35+
3536
//ds-snippet-start:Maestro1Step3
3637

3738
/// <summary>
@@ -162,7 +163,9 @@ private static IamClient CreateAuthenticatedClient(string basePath, string acces
162163
.WithAccessToken(accessToken)
163164
.Build();
164165
}
166+
165167
//ds-snippet-end:Maestro1Step2
168+
166169
/// <summary>
167170
/// Creates a TriggerInputs object for string inputs.
168171
/// </summary>

0 commit comments

Comments
 (0)