Skip to content

Commit

Permalink
add missing values
Browse files Browse the repository at this point in the history
  • Loading branch information
mashehu committed Oct 14, 2023
1 parent b786e79 commit 1a47e83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion public_html/pipeline_health.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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);
}
Expand Down

0 comments on commit 1a47e83

Please sign in to comment.