Fix server push is intercepted by SetupRequestHandler problem.

This commit is contained in:
KomachiSion 2023-09-28 11:55:00 +08:00
parent 40b46dba81
commit 3cfe5e82f2

View File

@ -518,8 +518,9 @@ public abstract class GrpcClient extends RpcClient {
SetupAckRequest setupAckRequest = (SetupAckRequest) request;
// remove and count down
recAbilityContext.release(setupAckRequest.getAbilityTable());
return new SetupAckResponse();
}
return new SetupAckResponse();
return null;
}
}