Skip to content

Commit

Permalink
Merge pull request capnproto#22 from vaci/vaci/rpc-ordering
Browse files Browse the repository at this point in the history
Track fix to ordering bug in C++ implementation
  • Loading branch information
vaci authored Mar 5, 2022
2 parents 2e319ce + 42d5535 commit 97e4766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime-rpc/src/main/java/org/capnproto/RpcState.java
Original file line number Diff line number Diff line change
Expand Up @@ -1896,7 +1896,7 @@ public ClientHook getInnermostClient() {
@Override
public Request<AnyPointer.Builder> newCall(long interfaceId, short methodId) {
this.receivedCall = true;
return this.cap.newCall(interfaceId, methodId);
return super.newCall(interfaceId, methodId);
}

@Override
Expand Down

0 comments on commit 97e4766

Please sign in to comment.