From c90091c247600580e99816034c9c70a200a08c92 Mon Sep 17 00:00:00 2001 From: Connor McMahon Date: Fri, 8 Jan 2021 10:03:41 -0800 Subject: [PATCH 1/2] Fix incorrect documentation for ReadEntityStateAsync() Remove the section about state above 16KB returning default(T), which has never been true after entities went GA. Fixes #1631 --- .../ContextInterfaces/IDurableEntityClient.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/WebJobs.Extensions.DurableTask/ContextInterfaces/IDurableEntityClient.cs b/src/WebJobs.Extensions.DurableTask/ContextInterfaces/IDurableEntityClient.cs index 2dcde211b..f9165d7df 100644 --- a/src/WebJobs.Extensions.DurableTask/ContextInterfaces/IDurableEntityClient.cs +++ b/src/WebJobs.Extensions.DurableTask/ContextInterfaces/IDurableEntityClient.cs @@ -82,8 +82,7 @@ public interface IDurableEntityClient Task SignalEntityAsync(EntityId entityId, DateTime scheduledTimeUtc, Action operation); /// - /// Tries to read the current state of an entity. Returns default() if the entity does not - /// exist, or if the JSON-serialized state of the entity is larger than 16KB. + /// Tries to read the current state of an entity. Returns default() if the entity does not exist. /// /// The JSON-serializable type of the entity. /// The target entity. From f4c74adc8b2f4e503b1053f71cec92c1b9bb0e05 Mon Sep 17 00:00:00 2001 From: Connor McMahon Date: Fri, 8 Jan 2021 10:09:17 -0800 Subject: [PATCH 2/2] Update release notes --- release_notes.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release_notes.md b/release_notes.md index 839c7283a..0a7672ce0 100644 --- a/release_notes.md +++ b/release_notes.md @@ -3,6 +3,7 @@ ## New Features ## Bug fixes +- Remove incorrect information from C# docs summary for IDurableEntityClient.ReadEntityStateAsync() regarding states large than 16KB (#1637) ## Breaking changes