aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kamon-spray/src/main/scala/kamon/spray/UowDirectives.scala3
-rw-r--r--project/Settings.scala2
2 files changed, 2 insertions, 3 deletions
diff --git a/kamon-spray/src/main/scala/kamon/spray/UowDirectives.scala b/kamon-spray/src/main/scala/kamon/spray/UowDirectives.scala
index 6f913a67..685388df 100644
--- a/kamon-spray/src/main/scala/kamon/spray/UowDirectives.scala
+++ b/kamon-spray/src/main/scala/kamon/spray/UowDirectives.scala
@@ -13,8 +13,7 @@ trait UowDirectives extends BasicDirectives {
val generatedUow = uowHeader.map(_.value).getOrElse(UowDirectives.newUow)
// TODO: Tracer will always have a context at this point, just rename the uow.
- //Tracer.set(Tracer.context().getOrElse(Tracer.newTraceContext()).copy(uow = generatedUow))
-
+ Trace.set(Trace.context().getOrElse(Trace.newTraceContext()).copy(uow = generatedUow))
request
}
}
diff --git a/project/Settings.scala b/project/Settings.scala
index 51bb7ef6..e1fcb229 100644
--- a/project/Settings.scala
+++ b/project/Settings.scala
@@ -3,7 +3,7 @@ import Keys._
import spray.revolver.RevolverPlugin.Revolver
object Settings {
- val VERSION = "0.0.9"
+ val VERSION = "0.0.10"
lazy val basicSettings = seq(
version := VERSION,