[Zope-Checkins] CVS: ZODB3/ZEO - StorageServer.py:1.91
Guido van Rossum
guido@python.org
Mon, 20 Jan 2003 15:15:47 -0500
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv9955
Modified Files:
StorageServer.py
Log Message:
Fix comment typo, and remove double space.
=== ZODB3/ZEO/StorageServer.py 1.90 => 1.91 ===
--- ZODB3/ZEO/StorageServer.py:1.90 Mon Jan 20 14:38:59 2003
+++ ZODB3/ZEO/StorageServer.py Mon Jan 20 15:15:44 2003
@@ -610,7 +610,7 @@
speed client cache verification when a client disconnects
for a short period of time.
- transaction_timout -- The maximum amount of time to wait for
+ transaction_timeout -- The maximum amount of time to wait for
a transaction to commit after acquiring the storage lock.
If the transaction takes too long, the client connection
will be closed and the transaction aborted.
@@ -813,7 +813,7 @@
# being released. (Serialized by asyncore.)
self._cond.acquire()
try:
- assert self._client is not None
+ assert self._client is not None
self._client = None
self._deadline = None
finally: