All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hydra.cluster.test.WebServerTest.scala Maven / Gradle / Ivy

package hydra.cluster.test

import hydra.cluster.app.SimpleClusterApp

import scalaj.http.Http

/**
  * For Hydra
  * Created by whereby[Tao Zhou]([email protected]) on 2017/12/25
  */
object WebServerTest {
  def main(args: Array[String]): Unit = {
    if (args.isEmpty) {
      SimpleClusterApp.startup(Seq("2551","0","0"))
      Thread.sleep(1000)
      Http("http://localhost:9000/app").postData(TestCons.pythonTestConfig).header("content-type", "application/json").asString
      println("App started")
    }
    else
      SimpleClusterApp.startup(args)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy