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
Caused by: java.lang.UnsupportedOperationException: null
at java.base/java.util.Collections$UnmodifiableCollection.add(Collections.java:1058)
at feign.jaxrs.JAXRSContract.addTemplatedParam(JAXRSContract.java:186)
at feign.jaxrs.JAXRSContract.processAnnotationsOnParameter(JAXRSContract.java:165)
at feign.Contract$BaseContract.parseAndValidateMetadata(Contract.java:110)
at feign.jaxrs.JAXRSContract.parseAndValidateMetadata(JAXRSContract.java:44)
at feign.Contract$BaseContract.parseAndValidatateMetadata(Contract.java:66)
at feign.ReflectiveFeign$ParseHandlersByName.apply(ReflectiveFeign.java:154)
at feign.ReflectiveFeign.newInstance(ReflectiveFeign.java:52)
at feign.Feign$Builder.target(Feign.java:251)
... 42 common frames omitted
This is caused by the Line 186 of JAXRSContract.java which trying to add an element into the template's headers or queries which become unmodified in 10.1.0, the previous version are not affected.
Can modify in JAXRSContract.java to make a new Collection instance and add new value then return it, wrapping unmodified if want to make accordance with feign-core.
The text was updated successfully, but these errors were encountered:
Version 10.1.0
API definition:
Error stack trace:
This is caused by the Line 186 of JAXRSContract.java which trying to add an element into the template's headers or queries which become unmodified in 10.1.0, the previous version are not affected.
Can modify in JAXRSContract.java to make a new Collection instance and add new value then return it, wrapping unmodified if want to make accordance with feign-core.
The text was updated successfully, but these errors were encountered: