Skip to content

Commit

Permalink
fix(interactive): fix get empty store state error (#4071)
Browse files Browse the repository at this point in the history
  • Loading branch information
siyuan0322 authored Jul 19, 2024
1 parent 072b0fa commit ac8b57c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -526,8 +526,7 @@ private void finish(Throwable t) {
if (t != null) {
responseObserver.onError(t);
} else {
responseObserver.onNext(
GetStoreStateResponse.newBuilder().build());
responseObserver.onNext(response.build());
responseObserver.onCompleted();
}
}
Expand Down

0 comments on commit ac8b57c

Please sign in to comment.