[Zodb-checkins] SVN: ZODB/trunk/src/ZEO/ Get rid of close_server.
Jim Fulton
jim at zope.com
Mon Nov 21 13:59:34 UTC 2011
Log message for revision 123455:
Get rid of close_server.
Changed:
U ZODB/trunk/src/ZEO/StorageServer.py
U ZODB/trunk/src/ZEO/runzeo.py
-=-
Modified: ZODB/trunk/src/ZEO/StorageServer.py
===================================================================
--- ZODB/trunk/src/ZEO/StorageServer.py 2011-11-21 12:33:31 UTC (rev 123454)
+++ ZODB/trunk/src/ZEO/StorageServer.py 2011-11-21 13:59:32 UTC (rev 123455)
@@ -1190,8 +1190,6 @@
if self.__thread is not None:
self.__thread.join(join_timeout)
- close_server = close
-
def close_conn(self, conn):
"""Internal: remove the given connection from self.connections.
Modified: ZODB/trunk/src/ZEO/runzeo.py
===================================================================
--- ZODB/trunk/src/ZEO/runzeo.py 2011-11-21 12:33:31 UTC (rev 123454)
+++ ZODB/trunk/src/ZEO/runzeo.py 2011-11-21 13:59:32 UTC (rev 123455)
@@ -160,7 +160,7 @@
self.create_server()
self.loop_forever()
finally:
- self.server.close_server()
+ self.server.close()
self.clear_socket()
self.remove_pidfile()
More information about the Zodb-checkins
mailing list