Skip to content

Commit 390fc5d

Browse files
committed
update changelog and update comments
1 parent 9206ee3 commit 390fc5d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
## (Unreleased)
44

5-
- - Add automatic retry on gateway timeout in `GrpcDurableTaskClient.WaitForInstanceCompletionAsync` in [#412](https://github.com/microsoft/durabletask-dotnet/pull/412))
5+
- Add New Property Properties to TaskOrchestrationContext by @nytian in [#415](https://github.com/microsoft/durabletask-dotnet/pull/415)
6+
- Add automatic retry on gateway timeout in `GrpcDurableTaskClient.WaitForInstanceCompletionAsync` in [#412](https://github.com/microsoft/durabletask-dotnet/pull/412))
67
- Add specific logging for NotFound error on worker connection by @halspang in ([#413](https://github.com/microsoft/durabletask-dotnet/pull/413))
78

89

src/Abstractions/TaskOrchestrationContext.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ public abstract class TaskOrchestrationContext
7171
public abstract IDictionary<string, object?> Properties { get; }
7272

7373
/// <summary>
74-
/// Gets the feature for interacting with entities from an orchestration.
75-
/// Currently not implemented.
74+
/// Gets the entity feature, for interacting with entities.
7675
/// </summary>
7776
public virtual TaskOrchestrationEntityFeature Entities =>
7877
throw new NotSupportedException($"Durable entities are not supported by {this.GetType()}.");

0 commit comments

Comments
 (0)