diff --git a/wip/app/app2.php b/wip/app/app2.php index f38f874..bb07549 100644 --- a/wip/app/app2.php +++ b/wip/app/app2.php @@ -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"); } } }