module OpenTelemetry::Instrumentation::Que::Patches::Poller

def poll(*args, **kwargs)

def poll(*args, **kwargs)
  # Avoid tracing when should_poll? returns true. This is also used
  # in Poller#poll to decide if the actual poll should be executed or
  # not. Without this we would generate a lot of unnecessary spans.
  return unless should_poll?
  if Que::Instrumentation.instance.config[:trace_poller]
    Que::Instrumentation.instance.tracer.in_span('Que::Poller#poll') { super }
  else
    OpenTelemetry::Common::Utilities.untraced { super }
  end
end