You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you configure "pipelines": [], the back end currently crashes with an IndexError: list index out of range in postprocessing_known().
I suspect users might try "pipelines": [] if they start with a config with a pipeline and then adapt it to a new dataset, for example, and remove the pipeline.
I see two options:
We forbid "pipelines": [], but we handle it clearly in a config validator.
We support "pipelines": [] just like if it was "pipelines": null.
The text was updated successfully, but these errors were encountered:
When you configure
"pipelines": []
, the back end currently crashes with anIndexError: list index out of range
inpostprocessing_known()
.I suspect users might try
"pipelines": []
if they start with a config with a pipeline and then adapt it to a new dataset, for example, and remove the pipeline.I see two options:
"pipelines": []
, but we handle it clearly in a config validator."pipelines": []
just like if it was"pipelines": null
.The text was updated successfully, but these errors were encountered: