We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfc5cef commit a0a4516Copy full SHA for a0a4516
src/main/scala/services.scala
@@ -26,7 +26,7 @@ object EvaluatorServer extends App {
26
val ip = Option(System.getenv("EVALUATOR_SERVER_IP")).getOrElse("0.0.0.0")
27
28
val port = (Option(System.getenv("EVALUATOR_SERVER_PORT")) orElse
29
- Option(System.getenv("http.port")))
+ Option(System.getProperty("http.port")))
30
.map(_.toInt)
31
.getOrElse(8080)
32
0 commit comments