Actions
Bug #21899
closedBroken technique indentation with jvm >= 12
Status:
Released
Priority:
N/A
Assignee:
Category:
Web - Config management
Target version:
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
0
Name check:
To do
Fix check:
Checked
Regression:
No
Description
105. $class = "cfengine-community" 106. if ($localContext.Evaluate($class)) { 107. $call = Command-Execution -Command "/bin/echo `"testing special characters ` è &é 'à é `"\" -PolicyMode $policyMode + 108. $methodContext = Compute-Method-Call @reportParams -MethodCall $call - 105. $methodContext = Compute-Method-Call @reportParams -MethodCall $call 109. $localContext.merge($methodContext) + 110. 111. } else { 112. Rudder-Report-NA @reportParams
The problem is that it does not call the indent
implicit but the new Java method introduced in Java 12 which has a different behavior.
Actions