From 42d5535e9afe5a2daa73a736c2f6cf8bda8cadf1 Mon Sep 17 00:00:00 2001 From: Vaci Koblizek Date: Sat, 5 Mar 2022 17:03:03 +0000 Subject: [PATCH] Track fix to ordering bug as described here: https://github.com/capnproto/capnproto/pull/1006 https://github.com/capnproto/capnproto/pull/1006/commits/6f77d092163d055b661873d72ef956009b1ed3d4 --- runtime-rpc/src/main/java/org/capnproto/RpcState.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime-rpc/src/main/java/org/capnproto/RpcState.java b/runtime-rpc/src/main/java/org/capnproto/RpcState.java index dcf2904..c671c3d 100644 --- a/runtime-rpc/src/main/java/org/capnproto/RpcState.java +++ b/runtime-rpc/src/main/java/org/capnproto/RpcState.java @@ -1896,7 +1896,7 @@ final class RpcState { @Override public Request newCall(long interfaceId, short methodId) { this.receivedCall = true; - return this.cap.newCall(interfaceId, methodId); + return super.newCall(interfaceId, methodId); } @Override