From cec581456e812cebb5fd8b5b226bea4ae4804af7 Mon Sep 17 00:00:00 2001 From: Jens Kat Date: Tue, 28 Feb 2023 22:32:16 +0100 Subject: [PATCH] Replace with advice should be in correct package --- .../apache}/pekko/actor/instrumentation/ReplaceWithAdvice.java | 2 +- .../pekko/instrumentations/ActorInstrumentation.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename instrumentation/kamon-pekko/src/main/java/{ => org/apache}/pekko/actor/instrumentation/ReplaceWithAdvice.java (92%) diff --git a/instrumentation/kamon-pekko/src/main/java/pekko/actor/instrumentation/ReplaceWithAdvice.java b/instrumentation/kamon-pekko/src/main/java/org/apache/pekko/actor/instrumentation/ReplaceWithAdvice.java similarity index 92% rename from instrumentation/kamon-pekko/src/main/java/pekko/actor/instrumentation/ReplaceWithAdvice.java rename to instrumentation/kamon-pekko/src/main/java/org/apache/pekko/actor/instrumentation/ReplaceWithAdvice.java index 478f3339a..853d509e8 100644 --- a/instrumentation/kamon-pekko/src/main/java/pekko/actor/instrumentation/ReplaceWithAdvice.java +++ b/instrumentation/kamon-pekko/src/main/java/org/apache/pekko/actor/instrumentation/ReplaceWithAdvice.java @@ -1,4 +1,4 @@ -package pekko.actor.instrumentation; +package org.apache.pekko.actor.instrumentation; import org.apache.pekko.actor.Cell; import org.apache.pekko.actor.UnstartedCell; diff --git a/instrumentation/kamon-pekko/src/main/scala/kamon/instrumentation/pekko/instrumentations/ActorInstrumentation.scala b/instrumentation/kamon-pekko/src/main/scala/kamon/instrumentation/pekko/instrumentations/ActorInstrumentation.scala index 698a74b6c..1a7a5eefe 100644 --- a/instrumentation/kamon-pekko/src/main/scala/kamon/instrumentation/pekko/instrumentations/ActorInstrumentation.scala +++ b/instrumentation/kamon-pekko/src/main/scala/kamon/instrumentation/pekko/instrumentations/ActorInstrumentation.scala @@ -24,7 +24,7 @@ import kamon.instrumentation.context.{HasContext, HasTimestamp} import kanela.agent.api.instrumentation.InstrumentationBuilder import kanela.agent.libs.net.bytebuddy.asm.Advice import kanela.agent.libs.net.bytebuddy.asm.Advice.{Argument, OnMethodEnter, OnMethodExit, This} -import pekko.actor.instrumentation.ReplaceWithAdvice +import org.apache.pekko.actor.instrumentation.ReplaceWithAdvice class ActorInstrumentation extends InstrumentationBuilder {