Details
-
Fix
-
Status: Released (View Workflow)
-
Minor
-
Resolution: Fixed
-
1.12, 1.13
-
None
Description
Current Situation
When the configuration monitor is assigned to a standalone job, no substitutions are executed.
The output from this job ist fest is \${test}
<job stop_on_error="no"> <params > <param name="test" value="value of test"/> <param name="fest" value="fest is \${test}"/> </params> <script language="shell"> <![CDATA[ echo %scheduler_param_fest% ]]> </script> <monitor name="configuration_monitor" ordering="0"> <script language="java" java_class_path="" java_class="com.sos.jitl.jobchainnodeparameter.monitor.JobchainNodeSubstituteMonitor"/> </monitor> <run_time /> </job>
Desired Behavior
The configuration monitor should perform substitution even when used in a standalone job. The output from the job example should be
value of fest is value of test