From 8d625b736b7d6d65363a749a7220602da1c711bb Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 3 Oct 2014 12:45:52 +1000 Subject: [PATCH] Revert "Close polled fds that are ready for reads but no longer have a client associated with them" This reverts commit f6f61e88702697a3e6a457f0c445472efc1f8b85. --- src/connector.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/connector.c b/src/connector.c index 16513097..671c21f4 100644 --- a/src/connector.c +++ b/src/connector.c @@ -308,9 +308,8 @@ retry: if (!client) { /* Probably already removed */ - LOGINFO("Failed to find client with polled fd %d in hashtable, closing", - fd); - close(fd); + LOGDEBUG("Failed to find client with polled fd %d in hashtable", + fd); } else parse_client_msg(ci, client);