Commit 81a25d96 authored by Jeremy Hylton's avatar Jeremy Hylton

Minor optimization and normalization -- wait/waiting.

parent ad4cf24e
......@@ -288,7 +288,6 @@ class ClientStorage:
self._oid = '\0\0\0\0\0\0\0\0'
# Decide whether to use non-temporary files
client = client
self._cache = self.ClientCacheClass(storage, cache_size,
client=client, var=var)
......@@ -321,7 +320,7 @@ class ClientStorage:
self._ready.wait(30)
if self._ready.isSet():
break
log2(INFO, "Wait for cache verification to finish")
log2(INFO, "Waiting for cache verification to finish")
else:
self._wait_sync()
......@@ -331,7 +330,7 @@ class ClientStorage:
while 1:
if self._ready.isSet():
break
log2(INFO, "Wait for cache verification to finish")
log2(INFO, "Waiting for cache verification to finish")
if self._connection is None:
# If the connection was closed while we were
# waiting for it to become ready, start over.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment