rspamd_socket_nonblocking (rep_fd);
}
+ msg_info ("got peer fd reply from the main process");
+
/* Start listening */
cur = worker->cf->listen_socks;
while (cur) {
ls = cur->data;
if (ls->fd != -1) {
+ msg_info ("start listening on %s",
+ rspamd_inet_address_to_string_pretty (ls->addr));
+
if (ls->type == RSPAMD_WORKER_SOCKET_UDP) {
accept_events = g_malloc0 (sizeof (struct event) * 2);
event_set (&accept_events[0], ls->fd, EV_READ | EV_PERSIST,
}
else {
if (!cf->enabled || cf->count <= 0) {
- msg_info_main ("worker of type %s is disabled in the config, "
- "skip spawning", g_quark_to_string (cf->type));
+ msg_info_main ("worker of type %s(%s) is disabled in the config, "
+ "skip spawning", g_quark_to_string (cf->type),
+ cf->bind_conf ? cf->bind_conf->bind_line : "none");
cur = g_list_next (cur);
continue;