rpuch commented on code in PR #5781: URL: https://github.com/apache/ignite-3/pull/5781#discussion_r2079404677
########## modules/raft-api/src/main/java/org/apache/ignite/internal/raft/configuration/RaftConfigurationSchema.java: ########## @@ -32,8 +32,7 @@ public class RaftConfigurationSchema { * a recipient and installed. */ @Value(hasDefault = true) - // TODO: IGNITE-18480 - is 5 minutes a good default? - public int installSnapshotTimeoutMillis = 5 * 60 * 1000; + public int installSnapshotTimeoutMillis = Integer.MAX_VALUE; Review Comment: The code that uses this timeout just makes an invoke() via MessagingService. If the node is stopped while the corresponding future is waiting for response, then `stop()` method will fail the future, so no additional wait will be imposed on node stop. -- 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