From 434666d6b2778fd252f5676f1931cd689f560b9e Mon Sep 17 00:00:00 2001 From: Federico Stagni Date: Fri, 5 Dec 2025 15:39:14 +0100 Subject: [PATCH] fix: call jobReport.commit() at job finalize() --- src/DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py b/src/DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py index 41aabc2e8f2..fcca9e5229a 100755 --- a/src/DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py +++ b/src/DIRAC/WorkloadManagementSystem/JobWrapper/JobWrapper.py @@ -1357,6 +1357,7 @@ def finalize(self): ) self.__cleanUp() + self.jobReport.commit() return 1 if self.failedFlag else 0 #############################################################################