Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

Update configuration variable from different configuration #3678

nini10 ·
Hi,

Does it possible to update Configuration variables from different Configuration? if so, could you please give example code for how to do it?

Thanks!
  • replies 1
  • views 626
  • stars 0
robinshen ADMIN ·
Please try below script:
groovy:
def someOtherConf = system.configurationManager.get("path/to/other/conf");
someOtherConf.getVar("some var").setValue("some value");
system.configurationManager.save(someOtherConf);