Merge pull request #22 from vaci/vaci/rpc-ordering
Track fix to ordering bug in C++ implementation
This commit is contained in:
commit
97e4766f49
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