Skip to content

Commit

Permalink
fix(opentelemetry-instrumentation-celery): remove duplicated signal r…
Browse files Browse the repository at this point in the history
…egistration
  • Loading branch information
malcolmrebughini authored and ocelotl committed Aug 1, 2024
1 parent 9674c16 commit 2e19183
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ def _instrument(self, **kwargs):
signals.task_prerun.connect(self._trace_prerun, weak=False)
signals.task_postrun.connect(self._trace_postrun, weak=False)
signals.before_task_publish.connect(self._trace_before_publish, weak=False)
signals.before_task_publish.connect(self._trace_before_publish, weak=False)
signals.after_task_publish.connect(self._trace_after_publish, weak=False)
signals.task_failure.connect(self._trace_failure, weak=False)
signals.task_retry.connect(self._trace_retry, weak=False)
Expand Down

0 comments on commit 2e19183

Please sign in to comment.