Skip to content

Off by one error

Context

This selector

    orchestrator.NewSelector(map[string]string{
        "cloudsim": "true",
        "nps": "true",
        "cloudsim_groupid": startData.GroupID.String(),
    })

will result in a string value of cloudsim=true,nps=truecloudsim_groupid=GROUP_ID. Note the missing comma.

Merge request reports