<Urgent>How to make continue on Error property a variable and take it from config file?

image
o

var = in_Config(“”).tostring
but i want to make var of type boolean so that it can be accepted by continue on error input

set var =
Boolean.parse(in_Config("").tostring)

where var = boolean variable

Hi @anjasing

Instead of having the value in Config , you can have the Value in Asset as a type “Boolean” and save asset name in Config and use inconfig(“assetname”).tostring in “Continue on Error” property.

Saving in asset will not required of changing each time in config file and publishing the code each time to orchestrator, you can directly change it in asset when ever required,

Thanks.

1 Like