Hi,
I’m new to this, so please be kind!
I have been surprised to find that the order matters when defining a task.
In my suite.rc file:
[[welcome_task]]
inherit = PLATFORM
script = """
echo starting welcome task now
"""
[[[job]]]
batch system = background
works, but
[[welcome_task]]
inherit = PLATFORM
[[[job]]]
batch system = background
script = """
echo starting welcome task now
"""
does not work.
Is there some logic that I haven’t understood here?
One of my more experienced colleagues suggested that this might be a bug and I should report it here.