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
We get requestType as Reflect.requestType(method).
If we have in method argument of type List<String> (not FLux<String>) we get request type is String. But the service will be transferred to List<String> instead of String and we will receive a serialization exception
The text was updated successfully, but these errors were encountered:
project for reproducing: sample.
I have two node. First node (
Consumer
) provide serviceInvalidConsumer
.Second node (
Provider
) provide serviceProducer
.When
Producer
callConsumer
, i get this exception.Next. Let see constructor of
MethodInfo
:We get requestType as
Reflect.requestType(method)
.If we have in method argument of type
List<String>
(notFLux<String>
) we get request type isString
. But the service will be transferred toList<String>
instead ofString
and we will receive a serialization exceptionThe text was updated successfully, but these errors were encountered: