Agent library error notification

This commit is contained in:
Calvo 2023-02-14 09:03:51 +01:00
parent a9832e9886
commit 9c4a0f8a2b
1 changed files with 10 additions and 1 deletions

View File

@ -258,6 +258,14 @@ class ConsoleSupervisor
$this->checkSyncQueueStatus(); $this->checkSyncQueueStatus();
} }
/*
* Checkc agent missing libraries.
* NOTIF.AGENT.LIBRARY
*/
if ((bool) enterprise_installed() === true) {
$this->checkLibaryError();
}
} }
@ -2832,7 +2840,8 @@ class ConsoleSupervisor
'message' => __( 'message' => __(
'There are omnishell agents with dependency errors', 'There are omnishell agents with dependency errors',
), ),
'url' => $url,
'url' => '__url__/index.php?sec=gextensions&sec2=enterprise/tools/omnishell',
] ]
); );
} }