Skip to content

Commit

Permalink
[cuebot] Fix gRPC GetHost method. (#1148)
Browse files Browse the repository at this point in the history
  • Loading branch information
prOOrc committed May 11, 2022
1 parent 596088e commit 101cdbf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public void getHost(HostGetHostRequest request,
StreamObserver<HostGetHostResponse> responseObserver) {
try {
responseObserver.onNext(HostGetHostResponse.newBuilder()
.setHost(whiteboard.findHost(request.getId()))
.setHost(whiteboard.getHost(request.getId()))
.build());
responseObserver.onCompleted();
} catch (EmptyResultDataAccessException e) {
Expand Down

0 comments on commit 101cdbf

Please sign in to comment.