[Zodb-checkins] CVS: StandaloneZODB/ZEO - StorageServer.py:1.32.6.3.2.7
Shane Hathaway
shane@cvs.zope.org
Mon, 10 Jun 2002 18:07:40 -0400
Update of /cvs-repository/StandaloneZODB/ZEO
In directory cvs.zope.org:/tmp/cvs-serv16606
Modified Files:
Tag: ZEO2-branch
StorageServer.py
Log Message:
The __invalidated attribute is no longer meaningful, but it was still
being examined at transaction finish. This resulted in no invalidations
being sent at all. Fixed.
=== StandaloneZODB/ZEO/StorageServer.py 1.32.6.3.2.6 => 1.32.6.3.2.7 ===
self.__storage = None
self.__storage_id = "uninitialized"
- self.__invalidated = []
self._transaction = None
def notifyConnected(self, conn):
@@ -304,7 +303,7 @@
invalidated = self.strategy.tpc_finish()
if invalidated:
self.server.invalidate(self, self.__storage_id,
- self.__invalidated, self.get_size_info())
+ invalidated, self.get_size_info())
if not self._handle_waiting():
self._transaction = None
self.strategy = None