Skip to content

Commit

Permalink
Fix bug checksum failures
Browse files Browse the repository at this point in the history
This commit fixes the bug where multiple realizations try to read checksum at the same time, leading it to grind to a halt.
  • Loading branch information
jonathan-eq committed Sep 2, 2024
1 parent e9c4a92 commit 98b2a85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ert/scheduler/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ async def run(
break

if self.returncode.result() == 0:
if self._scheduler._manifest_queue is not None:
await self._verify_checksum()
async with forward_model_ok_lock:
if self._scheduler._manifest_queue is not None:
await self._verify_checksum()
await self._handle_finished_forward_model()
break

Expand Down

0 comments on commit 98b2a85

Please sign in to comment.