-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
questionFlag this as a question for the next Cylc project meeting.Flag this as a question for the next Cylc project meeting.
Milestone
Description
With namelists we can configure "tables" (i.e, basic mappings):
[namelist:foo]
A=1
B=2
C=3This also works (in the GUI) with template variables:
[template variables:foo]
A=1
B=2
C=3And it makes sense here (in the context of template vars, we are configuring a dictionary), however, no template variable is created (this is a configuration dud, it does nothing).
Duplicate settings are equally valid here, they translate to lists.
Given this configuration:
[namelist:foo(1)]
A=1
B=2
C=3
[namelist:foo(2)]
A=4
B=5
C=6I would expect Cylc Rose to provide a variable equivalent to:
{% set foo=[
{"A": 1, "B": 2, "C": 3},
{"A": 4, "B": 5, "C": 6},
] %}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionFlag this as a question for the next Cylc project meeting.Flag this as a question for the next Cylc project meeting.