Track fix to ordering bug as described here:

https://github.com/capnproto/capnproto/pull/1006
6f77d09216
This commit is contained in:
Vaci Koblizek 2022-03-05 17:03:03 +00:00
parent 9bb1032274
commit 42d5535e9a

View file

@ -1896,7 +1896,7 @@ final class RpcState<VatId> {
@Override @Override
public Request<AnyPointer.Builder> newCall(long interfaceId, short methodId) { public Request<AnyPointer.Builder> newCall(long interfaceId, short methodId) {
this.receivedCall = true; this.receivedCall = true;
return this.cap.newCall(interfaceId, methodId); return super.newCall(interfaceId, methodId);
} }
@Override @Override