Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Ydb.Sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- Fixed bug Topic Reader: NullReferenceException when handling StopPartitionSessionRequest ([#528](https://github.com/ydb-platform/ydb-dotnet-sdk/issues/528)).
- Feat ADO.NET: Added YSON type support (YdbDbType.Yson) with byte[] values.

## v0.23.0
Expand Down
4 changes: 2 additions & 2 deletions src/Ydb.Sdk/src/Services/Topic/Reader/Reader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -322,11 +322,11 @@ private async Task RunProcessingStreamResponse()
case ServerMessageOneofCase.CommitOffsetResponse:
HandleCommitOffsetResponse(messageFromServer.CommitOffsetResponse);
break;
case ServerMessageOneofCase.PartitionSessionStatusResponse:
case ServerMessageOneofCase.UpdateTokenResponse:
case ServerMessageOneofCase.StopPartitionSessionRequest:
await StopPartitionSessionRequest(messageFromServer.StopPartitionSessionRequest);
break;
case ServerMessageOneofCase.PartitionSessionStatusResponse:
case ServerMessageOneofCase.UpdateTokenResponse:
case ServerMessageOneofCase.InitResponse:
case ServerMessageOneofCase.None:
case ServerMessageOneofCase.UpdatePartitionSession:
Expand Down
Loading