[Zodb-checkins] CVS: ZODB3/ZEO - StorageServer.py:1.52

Guido van Rossum guido@python.org
Thu, 29 Aug 2002 17:59:19 -0400


Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv23503

Modified Files:
	StorageServer.py 
Log Message:
It still bugged me that the manager method called by the connection
when the connection is closed is called 'close()' when it doesn't
close the manager, but tells the manager that one particular
connection is closed.  Rename it to 'close_conn()'.


=== ZODB3/ZEO/StorageServer.py 1.51 => 1.52 ===
--- ZODB3/ZEO/StorageServer.py:1.51	Thu Aug 29 17:35:41 2002
+++ ZODB3/ZEO/StorageServer.py	Thu Aug 29 17:59:19 2002
@@ -100,7 +100,7 @@
             except:
                 pass
 
-    def close(self, conn):
+    def close_conn(self, conn):
         for sid, cl in self.connections.items():
             if conn.obj in cl:
                 cl.remove(conn.obj)