jenkinsci / jenkinsci/workflow-basic-steps-plugin
[JENKINS-52768] echo step should use toString
- Dominant language
- Java
- Stars
- 73
- Forks
- 129
- PR merge metrics
- No merged PRs in 30d
Description
The echo command requires a String or GString to be passed to it (perhaps CharSequence?), and it fails with an obscure error about not having an @DataBoundConstructor otherwise.
Instead, the usual API for some sort of print(Object) is to use toString(), and the echo command should invoke Object#toString() if it gets an argument that it doesn't recognize.
---
Originally reported by
chrylis, imported from: echo step should use toString
Raw content of original issue
The echo command requires a String or GString to be passed to it (perhaps CharSequence?), and it fails with an obscure error about not having an @DataBoundConstructor otherwise.
Instead, the usual API for some sort of print(Object) is to use toString(), and the echo command should invoke Object#toString() if it gets an argument that it doesn't recognize.
Contributor guide
Assessment
This issue has not been assessed yet.