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 744b141 commit 8d87be1Copy full SHA for 8d87be1
lib/github/ldap.rb
@@ -28,7 +28,11 @@ class Ldap
28
def initialize(options = {})
29
@uid = options[:uid] || "sAMAccountName"
30
31
- @connection = Net::LDAP.new({host: options[:host], port: options[:port]})
+ @connection = Net::LDAP.new({
32
+ host: options[:host],
33
+ port: options[:port],
34
+ instrumentation_service: options[:instrumentation_service]
35
+ })
36
37
if options[:admin_user] && options[:admin_password]
38
@connection.authenticate(options[:admin_user], options[:admin_password])
0 commit comments