I have a BeanShell postprocessor which has the below code:
props.put("accDom",vars.get("DOMAIN_ID_1"));
Although the code works, and the value does get written to the defined property correctly, the log file is filled with such errors:
2020-11-24 14:41:19,655 ERROR o.a.j.u.BeanShellInterpreter: Error invoking bsh method: eval Sourced file: inline evaluation of: ``props.put("accDom",vars.get("DOMAIN_ID_1"));'' : Method Invocation props.put
2020-11-24 14:41:19,655 WARN o.a.j.e.BeanShellPostProcessor: Problem in BeanShell script: org.apache.jorphan.util.JMeterException: Error invoking bsh method: eval Sourced file: inline evaluation of: ``props.put("accDom",vars.get("DOMAIN_ID_1"));'' : Method Invocation props.put
Any ideas?