From 1a47e83f2bc23e3b447b5b3b536d7f2320271610 Mon Sep 17 00:00:00 2001 From: mashehu Date: Sat, 14 Oct 2023 11:16:27 +0200 Subject: [PATCH] add missing values --- public_html/pipeline_health.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public_html/pipeline_health.php b/public_html/pipeline_health.php index 720734dd27..0db1effd39 100644 --- a/public_html/pipeline_health.php +++ b/public_html/pipeline_health.php @@ -696,6 +696,7 @@ public function test_files_exist() { $this->has_json_schema = $files_404_cache->json_schema; $this->has_dsl2_modules_dir = $files_404_cache->dsl2_modules_dir; $this->has_nf_test = $files_404_cache->nf_test; + $this->has_nf_test_dev = $files_404_cache->nf_test_dev; } else { // Check if the files exist $this->has_json_schema = $this->check_url( @@ -719,7 +720,7 @@ public function test_files_exist() { 'json_schema' => $this->has_json_schema, 'dsl2_modules_dir' => $this->has_dsl2_modules_dir, 'nf_test' => $this->has_nf_test, - 'nf_test' => $this->has_nf_test_dev, + 'nf_test_dev' => $this->has_nf_test_dev, ]; $this->_save_cache_data($check_404_cache, $files_404_cache); }