From 16330e92daa30c6f0b75dd2aa3d3c7674a6ae8a5 Mon Sep 17 00:00:00 2001 From: Daan Hoogland Date: Sun, 2 Aug 2015 19:55:14 +0200 Subject: [PATCH] CLOUDSTACK-8656: silent close failure of clustering socket log as info --- .../src/com/cloud/cluster/ClusterServiceServletContainer.java | 1 + 1 file changed, 1 insertion(+) diff --git a/framework/cluster/src/com/cloud/cluster/ClusterServiceServletContainer.java b/framework/cluster/src/com/cloud/cluster/ClusterServiceServletContainer.java index f5d67224d2b..08f5dba69f6 100644 --- a/framework/cluster/src/com/cloud/cluster/ClusterServiceServletContainer.java +++ b/framework/cluster/src/com/cloud/cluster/ClusterServiceServletContainer.java @@ -114,6 +114,7 @@ public class ClusterServiceServletContainer { try { _serverSocket.close(); } catch (IOException e) { + s_logger.info("[ignored] error on closing server socket", e); } _serverSocket = null; }