We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2823a8 commit 2ff4470Copy full SHA for 2ff4470
autosubmit/job/job.py
@@ -2455,6 +2455,10 @@ def _substitute_placeholders(
2455
:return: Content with placeholders substituted.
2456
:rtype: str
2457
"""
2458
+ # TODO quick fix for 4.1.15 release, to see why it is needed
2459
+ if as_conf.dynamic_variables:
2460
+ parameters = as_conf.substitute_dynamic_variables(parameters, max_deep=25, in_the_end=True)
2461
+
2462
placeholders = re.findall(r'%(?<!%%)[a-zA-Z0-9_.-]+%(?!%%)', content, flags=re.IGNORECASE)
2463
for placeholder in placeholders:
2464
if placeholder in as_conf.default_parameters.values():
0 commit comments