aboutsummaryrefslogtreecommitdiff
path: root/kamon-playground
diff options
context:
space:
mode:
authorAndrei Pozolotin <Andrei.Pozolotin@gmail.com>2014-11-12 10:26:12 -0600
committerAndrei Pozolotin <Andrei.Pozolotin@gmail.com>2014-11-12 11:17:06 -0600
commitb31faeba25c0803c8a98cbc0e0b5c51c23f5b855 (patch)
treeededbfd13059f3227ba1f707993aa177f2023d17 /kamon-playground
parent833754af829632a4f2de7fd93f0a689ac83b365b (diff)
downloadKamon-b31faeba25c0803c8a98cbc0e0b5c51c23f5b855.tar.gz
Kamon-b31faeba25c0803c8a98cbc0e0b5c51c23f5b855.tar.bz2
Kamon-b31faeba25c0803c8a98cbc0e0b5c51c23f5b855.zip
= core: kamon akka instrumentation name space
suppress javac warnings move javac settings
Diffstat (limited to 'kamon-playground')
-rw-r--r--kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala b/kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala
index 7d7494eb..1164b811 100644
--- a/kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala
+++ b/kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala
@@ -85,8 +85,10 @@ object SimpleRequestProcessor extends App with SimpleRoutingApp with RequestBuil
path("site") {
traceName("FinalGetSite-3") {
complete {
- for (f1 <- pipeline(Get("http://127.0.0.1:9090/ok"));
- f2 <- pipeline(Get("http://www.google.com/search?q=mkyong"))) yield "Ok Double Future"
+ for (
+ f1 ← pipeline(Get("http://127.0.0.1:9090/ok"));
+ f2 ← pipeline(Get("http://www.google.com/search?q=mkyong"))
+ ) yield "Ok Double Future"
}
}
} ~