Skip to content

Commit

Permalink
fix missing return keyword of request body validated
Browse files Browse the repository at this point in the history
  • Loading branch information
MiracleDx committed Jan 7, 2022
1 parent a17098d commit 0318d46
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ public void request(Payload grpcRequest, StreamObserver<Payload> responseObserve
traceIfNecessary(payloadResponse, false);
responseObserver.onNext(payloadResponse);
responseObserver.onCompleted();
return;
}

if (!(parseObj instanceof Request)) {
Expand Down

0 comments on commit 0318d46

Please sign in to comment.