Dispatcher: services and ping not polling default groups (#13403)

This commit is contained in:
Tony Murray 2021-10-21 10:12:36 -05:00 committed by GitHub
parent 598366776d
commit 6e5ec4a0b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -374,7 +374,7 @@ class PingQueueManager(TimedQueueManager):
:param lock_manager: the single instance of lock manager
"""
TimedQueueManager.__init__(
self, config, lock_manager, "ping", False, config.ping.enabled
self, config, lock_manager, "ping", True, config.ping.enabled
)
self._db = LibreNMS.DB(self.config)
@ -410,7 +410,7 @@ class ServicesQueueManager(TimedQueueManager):
:param lock_manager: the single instance of lock manager
"""
TimedQueueManager.__init__(
self, config, lock_manager, "services", False, config.services.enabled
self, config, lock_manager, "services", True, config.services.enabled
)
self._db = LibreNMS.DB(self.config)