mirror of https://github.com/grpc/grpc-java.git
examples/kotlin: fix typo in HelloWorld example (#5505)
This commit is contained in:
parent
8e41f6e43b
commit
759e7a7fec
|
|
@ -73,7 +73,7 @@ internal constructor(private val channel: ManagedChannel) {
|
||||||
val client = HelloWorldClient("localhost", 50051)
|
val client = HelloWorldClient("localhost", 50051)
|
||||||
try {
|
try {
|
||||||
/* Access a service running on the local machine on port 50051 */
|
/* Access a service running on the local machine on port 50051 */
|
||||||
val user = if (args.size > 0) "world" else "world"
|
val user = if (args.size > 0) "${args[0]}" else "world"
|
||||||
client.greet(user)
|
client.greet(user)
|
||||||
} finally {
|
} finally {
|
||||||
client.shutdown()
|
client.shutdown()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue