Skip to content

Commit

Permalink
Format code block consistently
Browse files Browse the repository at this point in the history
Corrected the indentation of the code block for better readability and consistency. This ensures all properties in the 'DispatchWorkflowInstance' initialization are properly aligned. No functional changes were made in this commit.
  • Loading branch information
sfmskywalker committed Sep 5, 2024
1 parent 320bbdf commit f6d098e
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ public async Task<DispatchWorkflowResponse> DispatchAsync(DispatchWorkflowInstan
var sendEndpoint = await GetSendEndpointAsync(options);

await sendEndpoint.Send(new DispatchWorkflowInstance(request.InstanceId)
{
BookmarkId = request.BookmarkId,
ActivityHandle = request.ActivityHandle,
CorrelationId = request.CorrelationId,
Input = request.Input,
Properties = request.Properties
}, cancellationToken);
{
BookmarkId = request.BookmarkId,
ActivityHandle = request.ActivityHandle,
CorrelationId = request.CorrelationId,
Input = request.Input,
Properties = request.Properties
}, cancellationToken);
return DispatchWorkflowResponse.Success();
}

Expand Down

0 comments on commit f6d098e

Please sign in to comment.