Copilot commented on code in PR #7285:
URL: https://github.com/apache/ignite-3/pull/7285#discussion_r2640759182
##########
modules/platforms/dotnet/Apache.Ignite/Internal/ClientFailoverSocket.cs:
##########
@@ -83,7 +83,7 @@ internal sealed class ClientFailoverSocket : IDisposable,
IClientSocketEventList
private long _endPointIndex = Interlocked.Increment(ref
_globalEndPointIndex);
/** Observable timestamp. */
- private long _observableTimestamp;
+ private HybridTimestampTracker _observableTimestamp;
Review Comment:
Field '_observableTimestamp' can be 'readonly'.
```suggestion
private readonly HybridTimestampTracker _observableTimestamp;
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]