Skip to content

Commit 5892825

Browse files
committed
Add correct default exec_hosts string
1 parent efb2240 commit 5892825

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ert/scheduler/event.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
@dataclass
88
class StartedEvent:
99
iens: int
10-
exec_hosts: str = ""
10+
exec_hosts: str = "-"
1111

1212

1313
@dataclass
1414
class FinishedEvent:
1515
iens: int
1616
returncode: int
17-
exec_hosts: str = ""
17+
exec_hosts: str = "-"
1818

1919

2020
Event = Union[StartedEvent, FinishedEvent]

0 commit comments

Comments
 (0)