-
Notifications
You must be signed in to change notification settings - Fork 26.6k
Refactor tri pack & unpack use stream #16045
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 3.3
Are you sure you want to change the base?
Changes from all commits
05f0b17
ae2600c
a9d1e39
52cabcf
07caa6b
dbe9d7d
598a2a7
3128bd2
4ba46e6
39f647d
aed26d0
c97786e
ccf7d0d
c3e6699
9f2f062
9f88aac
7a35d21
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -18,7 +18,6 @@ | |||||||||||
|
|
||||||||||||
| import org.apache.dubbo.common.URL; | ||||||||||||
| import org.apache.dubbo.common.constants.CommonConstants; | ||||||||||||
| import org.apache.dubbo.common.io.StreamUtils; | ||||||||||||
| import org.apache.dubbo.common.utils.CollectionUtils; | ||||||||||||
| import org.apache.dubbo.remoting.http12.exception.UnimplementedException; | ||||||||||||
| import org.apache.dubbo.rpc.Invoker; | ||||||||||||
|
|
@@ -125,9 +124,9 @@ public static MethodDescriptor findTripleMethodDescriptor( | |||||||||||
| ServiceDescriptor serviceDescriptor, String methodName, InputStream rawMessage) throws IOException { | ||||||||||||
| MethodDescriptor methodDescriptor = findReflectionMethodDescriptor(serviceDescriptor, methodName); | ||||||||||||
| if (methodDescriptor == null) { | ||||||||||||
|
||||||||||||
| if (methodDescriptor == null) { | |
| if (methodDescriptor == null) { | |
| if (!rawMessage.markSupported()) { | |
| throw new IOException("InputStream must support mark/reset to resolve overloaded triple methods"); | |
| } |
Uh oh!
There was an error while loading. Please reload this page.