Python-LDAP simple_bind_s 超时
有没有办法手动设置 python-LDAP 中的“simple_bind_s”超时?我测试过 ldapObject.timeout = 10 它对我不起作用。有什么想法吗?
提前致谢..
Is there a way to set timeout for "simple_bind_s" in python-LDAP manually? I have tested ldapObject.timeout = 10 it did not work for me. Any ideas?
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为 ldap 对象设置选项
ldap.OPT_NETWORK_TIMEOUT
。如果达到指定的超时,这将引发 ldap.SERVER_DOWN 异常。
Set the option
ldap.OPT_NETWORK_TIMEOUT
for the ldap object.This will raise a ldap.SERVER_DOWN exception if the specified timeout is reached.
由于某种原因,
ldap.OPT_NETWORK_TIMEOUT
对我来说似乎永远不会超时,因此我使用ldap.OPT_TIMEOUT
代替(这会引发ldap.TIMEOUT
) :For some reason
ldap.OPT_NETWORK_TIMEOUT
never seems to time out for me, so I usedldap.OPT_TIMEOUT
instead (which will raiseldap.TIMEOUT
):