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
the cause of the problem: org.apache.dubbo.rpc.protocol.dubbo.telnet.InvokeTelnetHandler#isMatch
// arg(JSONArray instance) is Assignable From List
// Set not match
else if (arg instanceof Collection) {
if (!type.isArray() && !type.isAssignableFrom(arg.getClass())) {
return false;
}
}
actually, PojoUtils#realize can convert JSONArray to Set
Environment
Steps to reproduce this issue
Expected Result
Actual Result
The text was updated successfully, but these errors were encountered: