[Zodb-checkins] CVS: StandaloneZODB/ZEO - StorageServer.py:1.21.4.21
Jeremy Hylton
jeremy@zope.com
Thu, 10 Jan 2002 19:22:12 -0500
Update of /cvs-repository/StandaloneZODB/ZEO
In directory cvs.zope.org:/tmp/cvs-serv23562
Modified Files:
Tag: ZEO-ZRPC-Dev
StorageServer.py
Log Message:
Previous checkin was too thorough!
StorageProxy objects don't have a close() method.
=== StandaloneZODB/ZEO/StorageServer.py 1.21.4.20 => 1.21.4.21 ===
# Close the dispatcher so that there are no new connections.
self.dispatcher.close()
- for conn_list in self.connections.values():
- for c in conn_list:
- c.close()
for storage in self.storages.values():
storage.close()
# Force the asyncore mainloop to exit by hackery, i.e. close