M8 komplett umgesetzt

This commit is contained in:
2026-04-08 16:30:13 +02:00
parent a3f47ba560
commit d61316c699
21 changed files with 2377 additions and 89 deletions
@@ -310,10 +310,10 @@ public class BootstrapRunner {
LOG.error("Configuration validation failed: {}", e.getMessage());
return 1;
} catch (DocumentPersistenceException e) {
LOG.error("Persistence operation failed: {}", e.getMessage(), e);
LOG.error("Schema initialization failed: {}", e.getMessage(), e);
return 1;
} catch (Exception e) {
LOG.error("Bootstrap failure during startup.", e);
LOG.error("Unexpected startup failure.", e);
return 1;
}
}
@@ -391,7 +391,7 @@ public class BootstrapRunner {
*/
private BatchRunContext createRunContext() {
RunId runId = new RunId(UUID.randomUUID().toString());
LOG.info("Batch run started. RunId: {}", runId);
LOG.info("Preparing batch run. RunId: {}", runId);
return new BatchRunContext(runId, Instant.now());
}