aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/test
diff options
context:
space:
mode:
authorIvan Topolnak <ivantopo@gmail.com>2013-10-11 18:14:33 -0300
committerIvan Topolnak <ivantopo@gmail.com>2013-10-11 18:14:33 -0300
commit944ef29716d26910998ee20d4ff842301598e81b (patch)
treecb51d799f880758e591e13405117415dc7b7e4cf /kamon-core/src/main/scala/test
parente148933747e8fde17b6ac324df0dee70b8cb9ebc (diff)
downloadKamon-944ef29716d26910998ee20d4ff842301598e81b.tar.gz
Kamon-944ef29716d26910998ee20d4ff842301598e81b.tar.bz2
Kamon-944ef29716d26910998ee20d4ff842301598e81b.zip
wip
Diffstat (limited to 'kamon-core/src/main/scala/test')
-rw-r--r--kamon-core/src/main/scala/test/SimpleRequestProcessor.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/kamon-core/src/main/scala/test/SimpleRequestProcessor.scala b/kamon-core/src/main/scala/test/SimpleRequestProcessor.scala
index ef657f24..b1727d2b 100644
--- a/kamon-core/src/main/scala/test/SimpleRequestProcessor.scala
+++ b/kamon-core/src/main/scala/test/SimpleRequestProcessor.scala
@@ -26,7 +26,7 @@ object SimpleRequestProcessor extends App with SimpleRoutingApp with RequestBuil
path("test"){
uow {
complete {
- val futures = pipeline(Get("http://10.254.10.57:8000/")).map(r => "Ok") :: pipeline(Get("http://10.254.10.57:8000/")).map(r => "Ok") :: Nil
+ val futures = pipeline(Get("http://10.254.209.14:8000/")).map(r => "Ok") :: pipeline(Get("http://10.254.209.14:8000/")).map(r => "Ok") :: Nil
Future.sequence(futures).map(l => "Ok")
}