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 ) ).
12- Feat ADO.NET: Added YSON type support (YdbDbType.Yson) with byte[ ] values.
23
34## v0.23.0
Original file line number Diff line number Diff line change @@ -322,11 +322,11 @@ private async Task RunProcessingStreamResponse()
322322 case ServerMessageOneofCase . CommitOffsetResponse :
323323 HandleCommitOffsetResponse ( messageFromServer . CommitOffsetResponse ) ;
324324 break ;
325- case ServerMessageOneofCase . PartitionSessionStatusResponse :
326- case ServerMessageOneofCase . UpdateTokenResponse :
327325 case ServerMessageOneofCase . StopPartitionSessionRequest :
328326 await StopPartitionSessionRequest ( messageFromServer . StopPartitionSessionRequest ) ;
329327 break ;
328+ case ServerMessageOneofCase . PartitionSessionStatusResponse :
329+ case ServerMessageOneofCase . UpdateTokenResponse :
330330 case ServerMessageOneofCase . InitResponse :
331331 case ServerMessageOneofCase . None :
332332 case ServerMessageOneofCase . UpdatePartitionSession :
You can’t perform that action at this time.
0 commit comments