1
0

Optimierung: Catch-all-Exception-Behandlung an technischen Grenzen

gezielt geschärft
This commit is contained in:
2026-04-06 07:45:01 +02:00
parent 00daa9cb74
commit 6437ef38af
3 changed files with 60 additions and 53 deletions

View File

@@ -211,7 +211,7 @@ public class DefaultBatchRunProcessingUseCase implements BatchRunProcessingUseCa
try {
runLockPort.release();
logger.debug("Run lock released.");
} catch (Exception e) {
} catch (RuntimeException e) {
logger.warn("Warning: Failed to release run lock.", e);
}
}