Skip to content

Commit

Permalink
IGNITE-23747 / skip just 1 field, not 8
Browse files Browse the repository at this point in the history
  • Loading branch information
rpuch committed Dec 16, 2024
1 parent 62cf1af commit fc24aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/platforms/dotnet/Apache.Ignite.Tests/FakeServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ protected override void Handle(Socket handler, CancellationToken cancellationTok

case ClientOp.TxBegin:
reader.Skip(); // Read only.
reader.Skip(8); // TimeoutMillis.
reader.Skip(); // TimeoutMillis.
LastClientObservableTimestamp = reader.ReadInt64();

Send(handler, requestId, new byte[] { 0 }.AsMemory());
Expand Down

0 comments on commit fc24aa5

Please sign in to comment.