add health check

This commit is contained in:
team 1
2026-02-18 10:26:44 +01:00
parent b1e1fe082e
commit 9aa2bbcda4
7 changed files with 323 additions and 108 deletions

View File

@@ -30,7 +30,7 @@ final class IndexNdjsonInspector
{
if (!is_file($this->metaPath)) {
return [
'error' => 'index_meta.json nicht gefunden',
'error' => 'index_meta.json nicht gefunden. Bitte laden Sie min. ein Dokument in das System.',
'path' => $this->metaPath,
];
}
@@ -67,7 +67,7 @@ final class IndexNdjsonInspector
if (!is_file($this->ndjsonPath)) {
return [
'error' => 'index.ndjson nicht gefunden',
'error' => 'index.ndjson nicht gefunden. Bitte laden Sie min. ein Dokument in das System.',
'path' => $this->ndjsonPath,
'items' => [],
];