diff --git a/instrumentation/opentelemetry-instrumentation-remoulade/src/opentelemetry/instrumentation/remoulade/__init__.py b/instrumentation/opentelemetry-instrumentation-remoulade/src/opentelemetry/instrumentation/remoulade/__init__.py index 9f09168c6f..8463ffe05d 100644 --- a/instrumentation/opentelemetry-instrumentation-remoulade/src/opentelemetry/instrumentation/remoulade/__init__.py +++ b/instrumentation/opentelemetry-instrumentation-remoulade/src/opentelemetry/instrumentation/remoulade/__init__.py @@ -28,6 +28,7 @@ from remoulade.brokers.rabbitmq import RabbitmqBroker import remoulade + from opentelemetry.instrumentation.remoulade import RemouladeInstrumentor RemouladeInstrumentor().instrument() @@ -38,7 +39,7 @@ def multiply(x, y): return x * y - broker.declare_actor(count_words) + broker.declare_actor(multiply) multiply.send(43, 51)