File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/Services/Topic/Reader Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change
1
+ - Fixed bug Topic Reader: NullReferenceException when handling StopPartitionSessionRequest ([ #528 ] ( https://github.com/ydb-platform/ydb-dotnet-sdk/issues/528 ) ).
1
2
- Feat ADO.NET: Added YSON type support (YdbDbType.Yson) with byte[ ] values.
2
3
3
4
## v0.23.0
Original file line number Diff line number Diff line change @@ -322,11 +322,11 @@ private async Task RunProcessingStreamResponse()
322
322
case ServerMessageOneofCase . CommitOffsetResponse :
323
323
HandleCommitOffsetResponse ( messageFromServer . CommitOffsetResponse ) ;
324
324
break ;
325
- case ServerMessageOneofCase . PartitionSessionStatusResponse :
326
- case ServerMessageOneofCase . UpdateTokenResponse :
327
325
case ServerMessageOneofCase . StopPartitionSessionRequest :
328
326
await StopPartitionSessionRequest ( messageFromServer . StopPartitionSessionRequest ) ;
329
327
break ;
328
+ case ServerMessageOneofCase . PartitionSessionStatusResponse :
329
+ case ServerMessageOneofCase . UpdateTokenResponse :
330
330
case ServerMessageOneofCase . InitResponse :
331
331
case ServerMessageOneofCase . None :
332
332
case ServerMessageOneofCase . UpdatePartitionSession :
You can’t perform that action at this time.
0 commit comments