Skip to content

Commit

Permalink
#000 | Yohane, Fosso | slightly modify hello service for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
kraulain committed Aug 23, 2019
1 parent db877cb commit 8571163
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class HelloService extends GreeterGrpc.GreeterVertxImplBase {
public void sayHello(HelloRequest request, Future<HelloReply> response) {
response.complete(
HelloReply.newBuilder()
.setMessage(request.getName().isBlank() ? "Hello, World" : "Hello, " + request.getName())
.setMessage(request.getName().isBlank() ? "Hello, World" : "Hello, " + request.getName() + " from greeter one")
.build());
}
}

0 comments on commit 8571163

Please sign in to comment.