Skip to content

Commit

Permalink
Fix typo in PurgeInstanceAsync (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
shivamkm07 authored Mar 26, 2024
1 parent 78300ab commit 57cb7c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# v1.2.1

- Fix typo in `PurgeInstanceAsync` in `DurableTaskClient` (https://github.com/microsoft/durabletask-dotnet/pull/264)
- Fix `TaskFailureDetails.IsCausedBy` to support custom exceptions and 3rd party exceptions ([#273](https://github.com/microsoft/durabletask-dotnet/pull/273))
- Microsoft.Azure.DurableTask.Core dependency increased to `2.16.2`

Expand Down
2 changes: 1 addition & 1 deletion src/Client/Core/DurableTaskClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ public abstract Task ResumeInstanceAsync(
public abstract AsyncPageable<OrchestrationMetadata> GetAllInstancesAsync(OrchestrationQuery? filter = null);

/// <inheritdoc cref="PurgeInstanceAsync(string, PurgeInstanceOptions, CancellationToken)"/>
public virtual Task<PurgeResult> PurgeInstancesAsync(string instanceId, CancellationToken cancellation)
public virtual Task<PurgeResult> PurgeInstanceAsync(string instanceId, CancellationToken cancellation)
=> this.PurgeInstanceAsync(instanceId, null, cancellation);

/// <summary>
Expand Down
1 change: 1 addition & 0 deletions src/Client/Core/RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fix typo in `PurgeInstanceAsync` in `DurableTaskClient` (https://github.com/microsoft/durabletask-dotnet/pull/264)

0 comments on commit 57cb7c7

Please sign in to comment.