aboutsummaryrefslogtreecommitdiff
path: root/kamon-playground/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-playground/src/main')
-rw-r--r--kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala b/kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala
index 3afef0ca..333f5031 100644
--- a/kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala
+++ b/kamon-playground/src/main/scala/test/SimpleRequestProcessor.scala
@@ -34,9 +34,12 @@ object SimpleRequestProcessor extends App with SimpleRoutingApp with RequestBuil
import system.dispatcher
val act = system.actorOf(Props(new Actor {
+ println("Initializing from: " + (new Throwable).getStackTraceString)
def receive: Actor.Receive = { case any ⇒ sender ! any }
}), "com")
+ Thread.sleep(10000)
+
implicit val timeout = Timeout(30 seconds)
val pipeline = sendReceive