From fe28933d1ca137cf265fec0ecdcfa9b23f205d67 Mon Sep 17 00:00:00 2001 From: Andreas Eknes Lie Date: Thu, 3 Oct 2024 09:45:07 +0200 Subject: [PATCH] Add correct default exec_hosts string --- src/ert/scheduler/event.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ert/scheduler/event.py b/src/ert/scheduler/event.py index 470e861fe23..7ba4af80ac9 100644 --- a/src/ert/scheduler/event.py +++ b/src/ert/scheduler/event.py @@ -7,14 +7,14 @@ @dataclass class StartedEvent: iens: int - exec_hosts: str = "" + exec_hosts: str = "-" @dataclass class FinishedEvent: iens: int returncode: int - exec_hosts: str = "" + exec_hosts: str = "-" Event = Union[StartedEvent, FinishedEvent]