modifs.mineures sans commentaires

This commit is contained in:
Jephté Clain 2024-09-25 17:25:09 +04:00
parent ee81057e44
commit e4a58f0226
1 changed files with 2 additions and 2 deletions

View File

@ -476,6 +476,7 @@ class app2 {
#############################################################################
const EC_DISABLED = 251;
const EC_LOCKED = 252;
const EC_BAD_COMMAND = 253;
const EC_EXCEPTION = 254;
@ -532,8 +533,7 @@ class app2 {
if (self::$bgapplication_enabled === null) return;
$enabled = boolval(self::$bgapplication_enabled->invoke());
if (!$forceEnabled && !$enabled) {
msg::debug("Planifications désactivées. La tâche n'a pas été lancée");
throw new ExitError();
throw new ExitError(self::EC_DISABLED, "Planifications désactivées. La tâche n'a pas été lancée");
}
}
}