We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 566411e commit 3dd21b2Copy full SHA for 3dd21b2
instrumentation/rdkafka/lib/opentelemetry/instrumentation/rdkafka/instrumentation.rb
@@ -10,7 +10,8 @@ module Rdkafka
10
# The Instrumentation class contains logic to detect and install the Rdkafka instrumentation
11
class Instrumentation < OpenTelemetry::Instrumentation::Base
12
compatible do
13
- Gem::Requirement.new('>= 0.10.0', '< 0.15.0').satisfied_by?(::Rdkafka::VERSION)
+ gem_version = Gem::Version(::Rdkafka::VERSION)
14
+ Gem::Requirement.new('>= 0.10.0', '< 0.15.0').satisfied_by?(gem_version)
15
end
16
17
install do |_config|
0 commit comments