Skip to content

Commit

Permalink
Fix slow initial bridge connections for WITH_ADNS=no.
Browse files Browse the repository at this point in the history
  • Loading branch information
ralight committed Dec 17, 2020
1 parent f32d9ae commit f10de98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/bridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f10de98

Please sign in to comment.