Copilot commented on code in PR #5845: URL: https://github.com/apache/ignite-3/pull/5845#discussion_r2095660226
########## modules/client/src/test/java/org/apache/ignite/client/MultiClusterTest.java: ########## @@ -25,8 +25,10 @@ import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.UUID; +import java.util.concurrent.atomic.AtomicLong; Review Comment: Remove the unused import of AtomicLong to clean up dependencies in the test. ```suggestion // Removed unused import of AtomicLong ``` ########## modules/client/src/main/java/org/apache/ignite/internal/client/ReliableChannel.java: ########## @@ -216,6 +216,10 @@ public HybridTimestampTracker observableTimestamp() { return observableTimeTracker; } Review Comment: [nitpick] Add a Javadoc comment for the new clusterId() method to explain its purpose and return value. ```suggestion /** * Retrieves the unique identifier of the cluster. * * @return The cluster's unique identifier as a {@link UUID}, or {@code null} if the cluster ID is not available. */ ``` -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org