Skip to content

Commit 6c720ef

Browse files
authored
Merge pull request #2947 from brandonbiggs/master
[bugfix] Properly apply logging configuration to all systems listed in `target_systems`
2 parents 41d4ac2 + 9894692 commit 6c720ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

reframe/core/config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ def _merge_config_sections(self, target, other):
161161
entry = functools.reduce(
162162
lambda l, r: l.update(r) or l, optionset
163163
)
164-
entry['target_systems'] = [system]
164+
entry.setdefault('target_systems', [])
165+
entry['target_systems'].append(system)
165166
ret.append(entry)
166167

167168
return ret

0 commit comments

Comments
 (0)