solution: use port 2449 by default

This commit is contained in:
Igor Artamonov
2019-09-07 21:34:11 -04:00
parent 1ea6345cd6
commit 26d2b0a3a0
7 changed files with 22 additions and 22 deletions

View File

@@ -44,7 +44,7 @@ open class GrpcServer(
fun start() {
log.info("Starting GRPC Server...")
log.debug("Running with DEBUG LOGGING")
val port = env.getProperty("port", "8090").toInt()
val port = env.getProperty("port", "2449").toInt()
log.info("Listening on 0.0.0.0:$port")
val serverBuilder = NettyServerBuilder.forPort(port)
rpcs.forEach {