From 6dae814a28ddc742342d99b3d5e4bb9b7b954722 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 11 Jul 2024 09:34:23 +0300 Subject: [PATCH] Minor change to health check to support older Flutter apps --- app/Utils/SystemHealth.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Utils/SystemHealth.php b/app/Utils/SystemHealth.php index c415d36903d4..e24190fdd341 100644 --- a/app/Utils/SystemHealth.php +++ b/app/Utils/SystemHealth.php @@ -83,6 +83,7 @@ class SystemHealth 'pdf_engine' => (string) self::getPdfEngine(), 'queue' => (string) config('queue.default'), 'queue_data' => self::checkQueueData(), + 'jobs_pending' => 0, // TODO for backwards compatibility, remove once Flutter AP is updated 'trailing_slash' => (bool) self::checkUrlState(), 'file_permissions' => (string) ($check_file_system ? self::checkFileSystem() : ''), 'exchange_rate_api_not_configured' => (bool)self::checkCurrencySanity(),