Skip to content

Commit

Permalink
add generics
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit committed Jan 24, 2022
1 parent 11810cd commit 6e8bdd4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static class MonoCoroutineAdvice {
@Advice.OnMethodEnter
public static void enter(
@Advice.Argument(value = 0, readOnly = false) CoroutineContext coroutineContext,
@Advice.Argument(1) MonoSink monoSink) {
@Advice.Argument(1) MonoSink<?> monoSink) {
Context context =
ContextPropagationOperator.getOpenTelemetryContext(
monoSink.currentContext(), Java8BytecodeBridge.currentContext());
Expand Down

0 comments on commit 6e8bdd4

Please sign in to comment.