From 0ad49b129a468f78b1ea37ba76833deadf6c84cc Mon Sep 17 00:00:00 2001 From: Jordan Halterman Date: Mon, 8 May 2017 16:45:50 -0700 Subject: [PATCH] [ONOS-6401] Increase Netty request timeout to 500 milliseconds Change-Id: I9da7e3a90281ab8eb4aa47d6eb7f14b3afc4c00b --- .../store/cluster/messaging/impl/NettyMessagingManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/store/dist/src/main/java/org/onosproject/store/cluster/messaging/impl/NettyMessagingManager.java b/core/store/dist/src/main/java/org/onosproject/store/cluster/messaging/impl/NettyMessagingManager.java index d49964e8f5..fae957a6dd 100644 --- a/core/store/dist/src/main/java/org/onosproject/store/cluster/messaging/impl/NettyMessagingManager.java +++ b/core/store/dist/src/main/java/org/onosproject/store/cluster/messaging/impl/NettyMessagingManager.java @@ -94,7 +94,7 @@ import static org.onosproject.security.AppPermission.Type.CLUSTER_WRITE; @Service public class NettyMessagingManager implements MessagingService { - private static final int REPLY_TIME_OUT_MILLIS = 250; + private static final int REPLY_TIME_OUT_MILLIS = 500; private static final short MIN_KS_LENGTH = 6; private final Logger log = LoggerFactory.getLogger(getClass());