From a9a7976ca8452d363c3daff08ac5734a598c892d Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Thu, 21 Nov 2013 13:57:47 +0100 Subject: test_integration: Log external hostname in Host.ldap_connect This may make debugging easier if the address is set incorrectly. --- ipatests/test_integration/host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipatests/test_integration/host.py') diff --git a/ipatests/test_integration/host.py b/ipatests/test_integration/host.py index be45a033..507e19ed 100644 --- a/ipatests/test_integration/host.py +++ b/ipatests/test_integration/host.py @@ -160,7 +160,7 @@ class BaseHost(object): def ldap_connect(self): """Return an LDAPClient authenticated to this host as directory manager """ - self.log.info('Connecting to LDAP') + self.log.info('Connecting to LDAP at %s', self.external_hostname) ldap = IPAdmin(self.external_hostname) binddn = self.config.dirman_dn self.log.info('LDAP bind as %s' % binddn) -- cgit