[Zodb-checkins] CVS: ZODB3/ZODB - config.py:1.4
Fred L. Drake, Jr.
fred@zope.com
Tue, 7 Jan 2003 18:25:15 -0500
Update of /cvs-repository/ZODB3/ZODB
In directory cvs.zope.org:/tmp/cvs-serv6794
Modified Files:
config.py
Log Message:
Update to accomodate changes in the socket-address ZConfig datatype.
=== ZODB3/ZODB/config.py 1.3 => 1.4 ===
--- ZODB3/ZODB/config.py:1.3 Mon Jan 6 17:42:17 2003
+++ ZODB3/ZODB/config.py Tue Jan 7 18:25:11 2003
@@ -91,7 +91,7 @@
from ZEO.ClientStorage import ClientStorage
# config.server is a multikey of socket-address values
# where the value is a socket family, address tuple.
- L = [addr for family, addr in self.config.server]
+ L = [server.address for server in self.config.server]
return ClientStorage(
L,
storage=self.config.storage,