Fix slow initial bridge connections for WITH_ADNS=no.

pull/1964/head
Roger A. Light 5 years ago
parent f32d9ae97c
commit f10de9831a

@ -8,6 +8,7 @@ Broker:
- Fix QoS 0 messages not being delivered if max_queued_messages was set to 0.
Closes #1956.
- Fix local bridges being disconnected on SIGHUP. Closes #1942.
- Fix slow initial bridge connections for WITH_ADNS=no.
Clients:
- Fix mosquitto_sub being unable to terminate with Ctrl-C if a successful

@ -577,6 +577,7 @@ int bridge__register_local_connections(void)
log__printf(NULL, MOSQ_LOG_ERR, "Error in epoll initial registering bridge: %s", strerror(errno));
return MOSQ_ERR_UNKNOWN;
}
mux__add_out(context);
}
}
#endif

Loading…
Cancel
Save