[Zodb-checkins] CVS: ZODB3/ZEO - ClientStorage.py:1.73.2.26.2.2
Barry Warsaw
barry at zope.com
Fri Aug 1 17:44:24 EDT 2003
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv9658
Modified Files:
Tag: ZODB3-3_1-boston-branch
ClientStorage.py
Log Message:
sortKey(): Add the storage name to the key.
=== ZODB3/ZEO/ClientStorage.py 1.73.2.26.2.1 => 1.73.2.26.2.2 ===
--- ZODB3/ZEO/ClientStorage.py:1.73.2.26.2.1 Fri Aug 1 16:13:08 2003
+++ ZODB3/ZEO/ClientStorage.py Fri Aug 1 16:44:18 2003
@@ -474,7 +474,7 @@
if self._server_addr is None:
raise ClientDisconnected
else:
- return self._server_addr
+ return '%s:%s' % (self._storage, self._server_addr)
def verify_cache(self, server):
"""Internal routine called to verify the cache."""
More information about the Zodb-checkins
mailing list