Refactor: Worker-Log-Verzeichnis von 'temp' zu 'tmp' umbenennen

This commit is contained in:
2026-01-23 19:38:57 +01:00
parent afff427f67
commit 2858d46ef1
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -50,7 +50,7 @@ class WorkerPoolMixin:
# Erstelle Worker-Pool (wähle richtige Variante basierend auf XSLT-Version)
num_workers = app_settings.max_workers
log_dir = self.project.project_dir / "temp"
log_dir = self.project.project_dir / "tmp"
# Wähle die richtige Worker-Pool-Implementierung
if app_settings.saxon_xslt_version == XsltVersion.XSLT_1_0:
@@ -140,7 +140,7 @@ class WorkerPoolMixin:
# Erstelle Worker-Pool
num_workers = app_settings.max_workers
log_dir = self.project.project_dir / "temp"
log_dir = self.project.project_dir / "tmp"
pool = FopWorkerPool(
num_workers=num_workers,
java_vm_path=java_vm.path_to_binary_file,