Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

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.

None yet

1 participant