Skip to content

Commit 599ef02

Browse files
leonardo-albertovichedsiper
authored andcommitted
network: properly react to being awoken due to a timeout
Signed-off-by: Leonardo Alminana <leonardo@calyptia.com>
1 parent a9605f3 commit 599ef02

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/flb_network.c

+17
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,12 @@ static int net_connect_async(int fd,
485485
return -1;
486486
}
487487

488+
if (u_conn->net_error == ETIMEDOUT) {
489+
flb_debug("[net] TCP connection timed out: %s:%i",
490+
u->tcp_host, u->tcp_port);
491+
return -1;
492+
}
493+
488494
/* Check the connection status */
489495
if (mask & MK_EVENT_WRITE) {
490496
error = flb_socket_error(u_conn->fd);
@@ -1313,6 +1319,17 @@ flb_sockfd_t flb_net_tcp_connect(const char *host, unsigned long port,
13131319
(char *) host, port, connect_timeout);
13141320
}
13151321

1322+
if (u_conn->net_error == ETIMEDOUT) {
1323+
/* flb_upstream_conn_timeouts called prepare_destroy_conn which
1324+
* closed the file descriptor and removed it from the event so
1325+
* we can safely ignore it.
1326+
*/
1327+
1328+
fd = -1;
1329+
1330+
break;
1331+
}
1332+
13161333
if (ret == -1) {
13171334
address[0] = '\0';
13181335

0 commit comments

Comments
 (0)