handling synchronizer instantiation when metaconsole is merging

This commit is contained in:
alejandro.campos@artica.es 2023-03-06 17:27:21 +01:00
parent 76dbaf46d2
commit f47e2dda8c
2 changed files with 3 additions and 3 deletions

View File

@ -2723,7 +2723,7 @@ class ConsoleSupervisor
return; return;
} }
$sync = new PandoraFMS\Enterprise\Metaconsole\Synchronizer(); $sync = new PandoraFMS\Enterprise\Metaconsole\Synchronizer(true);
$counts = $sync->getQueues(true); $counts = $sync->getQueues(true);
if (count($counts) === 0) { if (count($counts) === 0) {
@ -2780,7 +2780,7 @@ class ConsoleSupervisor
return; return;
} }
$sync = new PandoraFMS\Enterprise\Metaconsole\Synchronizer(); $sync = new PandoraFMS\Enterprise\Metaconsole\Synchronizer(true);
$queues = $sync->getQueues(); $queues = $sync->getQueues();
if (count($queues) === 0) { if (count($queues) === 0) {
// Clean all. // Clean all.

View File

@ -58,7 +58,7 @@ body {
} }
a { a {
color: #dc8100; color: #dc8100 !important;
text-decoration: none; text-decoration: none;
} }