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 c6730f7 commit 6790ceaCopy full SHA for 6790cea
lib/net/ldap.rb
@@ -652,8 +652,11 @@ def search(args = {})
652
}
653
else
654
begin
655
- conn = Net::LDAP::Connection.new(:host => @host, :port => @port,
656
- :encryption => @encryption)
+ conn = Net::LDAP::Connection.new \
+ :host => @host,
657
+ :port => @port,
658
+ :encryption => @encryption,
659
+ :instrumentation_service => @instrumentation_service
660
if (@result = conn.bind(args[:auth] || @auth)).result_code == 0
661
@result = conn.search(args) { |entry|
662
result_set << entry if result_set
0 commit comments