mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Dispatcher: services and ping not polling default groups (#13403)
This commit is contained in:
@ -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)
|
||||
|
||||
|
Reference in New Issue
Block a user