Skip to content

Commit

Permalink
Remove duplicate logging in scheduler job (#6902)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-eq authored Jan 5, 2024
1 parent d509685 commit a8192b7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/ert/scheduler/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,6 @@ async def __call__(
elif attempt < max_submit - 1:
message = f"Realization: {self.iens} failed, resubmitting"
logger.warning(message)
else:
message = f"Realization {self.iens} failed after {max_submit} attempt(s)"
logger.error(message)

async def _max_runtime_task(self) -> None:
assert self.real.max_runtime is not None
Expand Down

0 comments on commit a8192b7

Please sign in to comment.