You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the task re-uses TaskResult from the concord-v2 runtime for the common code that can be called from both v1 and v2 runtimes. Due to breaking changes in 1.71.0, this might cause errors like so:
java.lang.InstantiationError: com.walmartlabs.concord.runtime.v2.sdk.TaskResult
at com.walmartlabs.concord.plugins.ansible.AnsibleTask.run(AnsibleTask.java:153)
at com.walmartlabs.concord.plugins.ansible.v1.RunPlaybookTask2.run(RunPlaybookTask2.java:127)
We need to change the task to not to use v2 types in common code bits and avoid situations like this in future.
The text was updated successfully, but these errors were encountered:
Currently the task re-uses
TaskResult
from theconcord-v2
runtime for the common code that can be called from both v1 and v2 runtimes. Due to breaking changes in 1.71.0, this might cause errors like so:We need to change the task to not to use v2 types in common code bits and avoid situations like this in future.
The text was updated successfully, but these errors were encountered: