From 5b6fbe6aebbe9cd24dfebe9271ecb5dc40877c94 Mon Sep 17 00:00:00 2001 From: Simon Weller Date: Mon, 7 Mar 2016 16:23:35 -0600 Subject: [PATCH] Cloudstack 9285 for 4.7.x --- agent/src/com/cloud/agent/Agent.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/agent/src/com/cloud/agent/Agent.java b/agent/src/com/cloud/agent/Agent.java index 994e8224894..912d3088e1c 100644 --- a/agent/src/com/cloud/agent/Agent.java +++ b/agent/src/com/cloud/agent/Agent.java @@ -412,7 +412,8 @@ public class Agent implements HandlerFactory, IAgentControl { try { _connection.start(); } catch (final NioConnectionException e) { - throw new CloudRuntimeException("Unable to start the connection!", e); + s_logger.info("Attempted to connect to the server, but received an unexpected exception, trying again..."); + } _shell.getBackoffAlgorithm().waitBeforeRetry(); } while (!_connection.isStartup());