From 46c653293381dcc1188013d3e2c3f7587a199dc4 Mon Sep 17 00:00:00 2001 From: fusion32 Date: Fri, 10 Oct 2025 15:14:02 -0300 Subject: organize database configs and schema files + compilation guards --- src/connections.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/connections.cc') diff --git a/src/connections.cc b/src/connections.cc index b08b52a..0760514 100644 --- a/src/connections.cc +++ b/src/connections.cc @@ -612,7 +612,7 @@ void ProcessConnections(void){ ASSERT(NumFds > 0); int NumEvents = poll(Fds, NumFds, -1); if(NumEvents == -1){ - if(errno != ETIMEDOUT){ + if(errno != ETIMEDOUT && errno != EINTR){ LOG_ERR("Failed to poll connections: (%d) %s", errno, strerrordesc_np(errno)); } -- cgit v1.2.3