sanpwc commented on code in PR #3467:
URL: https://github.com/apache/ignite-3/pull/3467#discussion_r1544182602
##########
modules/replicator/src/main/java/org/apache/ignite/internal/replicator/ReplicaService.java:
##########
@@ -48,8 +49,11 @@
/** The service is intended to execute requests on replicas. */
public class ReplicaService {
+ /** RPC timeout system property name. */
+ public static final String REPLICA_SERVICE_RPC_TIMEOUT =
"REPLICA_SERVICE_RPC_TIMEOUT";
+
/** Network timeout. */
- private static final long RPC_TIMEOUT = 3000;
+ private final long rpcTimeout =
IgniteSystemProperties.getInteger(REPLICA_SERVICE_RPC_TIMEOUT, 3000);
Review Comment:
Same as above. Converted it to a configuration property.
--
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]