On Fri, Jun 24, 2016 at 8:39 AM, Paul Allen <[email protected]> wrote: > java.lang.ClassCastException: > sun.reflect.generics.reflectiveObjects.ParameterizedTypeImpl cannot be cast > to java.lang.Class > at > org.jenkinsci.plugins.workflow.structs.DescribableHelper.coerce(DescribableHelper.java:214)
Probably JENKINS-28510. Generally speaking, Pipeline steps are not designed to take arbitrary data types as parameters, only things which Jenkins databinding handles: primitives, `Describable`s, and `List`s/arrays of the above. -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-dev/CANfRfr1ipk2j6AL%2B1Zwfa2Oy1fL4fUMNNqpqVApFd6PsDsT0GA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
