Missing listeners are treated as warnings instead of errors

Missing listeners are no longer a cause for shutdown.
This commit is contained in:
Markus Makela
2016-03-04 10:58:12 +02:00
parent dd9f7fbbb7
commit 9dc55735e7
2 changed files with 34 additions and 21 deletions

View File

@ -582,10 +582,12 @@ process_config_context(CONFIG_CONTEXT *context)
* error_count += consistency_checks();
*/
#ifdef REQUIRE_LISTENERS
if (!service_all_services_have_listeners())
{
error_count++;
}
#endif
if (error_count)
{