Skip to content

[FIX] Correction of the setMTSParam method in the case of a list variable.#65

Open
othomas-dev wants to merge 1 commit intoericsson-mts:masterfrom
othomas-dev:fix_setMTSParam
Open

[FIX] Correction of the setMTSParam method in the case of a list variable.#65
othomas-dev wants to merge 1 commit intoericsson-mts:masterfrom
othomas-dev:fix_setMTSParam

Conversation

@othomas-dev
Copy link

@othomas-dev othomas-dev commented Nov 2, 2023

I have made a correction to the setMTSParam method (MTSScript.groovy) to avoid overwriting the list on each iteration (see: issue #64).
This allows to set a 'list' variable into MTS ParameterPool.

    /**
     * set a variable into MTS ParameterPool
     *
     */
    protected void setMTSParam(String name, Object value) {
        try {
            //println "MTSBinder.setMTSParam($name)"
            Parameter groovyParameter = new Parameter();
            if (value != null && value instanceof List) {
                value.each{groovyParameter.add(parseParameter(it))}
            } else {
                groovyParameter= parseParameter(value);
            }
            binding.runner.getParameterPool().set(ParameterPool.bracket(name), groovyParameter);
        } catch (ParameterException e) {
            e;
            e.printStackTrace();
        }
    }

@othomas-dev
Copy link
Author

Is there anyone that could take a look at this PR? @egwepas ?
Thanks a lot,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant