-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
bugSomething isn't workingSomething isn't workingv2_overhaulbreaking feature for v2breaking feature for v2
Description
Currently, all of the parameters are expected to be lists, even when it is unnecessary (like the "binary" below).
{
"name": "gathercmd",
"label": "make_logdirs",
"parameters": {
"binary": ["mkdir"], <--
"args": ["-p", "/tmp/control_logs"]
}
}
There is also some api supporting this Param.GetOne
. This should be removed, and the descriptors updated to have single values.
Proposal
{
"name": "gathercmd",
"label": "make_logdirs",
"parameters": {
"binary": "mkdir", <--
"args": ["-p", "/tmp/control_logs"]
}
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingv2_overhaulbreaking feature for v2breaking feature for v2