From 4457d09609365f856e1ccac08a2edeb1dc534629 Mon Sep 17 00:00:00 2001 From: rread Date: Wed, 13 Aug 2003 20:16:22 +0000 Subject: [PATCH] b=1513 r=shaver * add conn_cnt to import, export, and lustre_msg. The conn_cnt is increased by the client whenever it connects or reconnects. The server ignores failed BRWs with an old conn_cnt. Also, when a bulk is resent, the xid is changed, so the previous one will definitely fail. --- lustre/utils/Lustre/lustredb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/utils/Lustre/lustredb.py b/lustre/utils/Lustre/lustredb.py index c8f74e2..eeaa7ec 100644 --- a/lustre/utils/Lustre/lustredb.py +++ b/lustre/utils/Lustre/lustredb.py @@ -298,7 +298,7 @@ class LustreDB_LDAP(LustreDB): # user and pw only needed if modifying db self.l.bind_s(self._user, self._pw, ldap.AUTH_SIMPLE); except ldap.LDAPError, e: - raise Lustre.LconfError('Unable to connect to ldap server') + raise Lustre.LconfError('Unable to connect to ldap server:' + self._url) try: self._name, self._attrs = self.l.search_s(self._base, -- 1.8.3.1