Track fix to ordering bug as described here:
https://github.com/capnproto/capnproto/pull/1006
6f77d09216
This commit is contained in:
parent
9bb1032274
commit
42d5535e9a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue