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
What happened:
Generic call to Dubbo Java error when parameterTypes not provide, dubbo-go is free. What you expected to happen:
How to reproduce it (as minimally and precisely as possible):
Just like this:
Anything else we need to know?:
When dubbo go is called by generalization, it can be called normally because there is no method overloading problem and there is no need to use the types parameter.
However, when dubbo java provider is called and types is nil, types = []interface{} is passed in by default, which causes java to report an error.
Possible solution:
[] set types = nil in generic filter
[] deal it in dubbo java
The text was updated successfully, but these errors were encountered:
What happened:
Generic call to Dubbo Java error when parameterTypes not provide, dubbo-go is free.
What you expected to happen:
How to reproduce it (as minimally and precisely as possible):
Just like this:
Anything else we need to know?:
When dubbo go is called by generalization, it can be called normally because there is no method overloading problem and there is no need to use the types parameter.
However, when dubbo java provider is called and types is nil, types = []interface{} is passed in by default, which causes java to report an error.
Possible solution:
The text was updated successfully, but these errors were encountered: