[Zodb-checkins]
SVN: ZODB/branches/blob-merge-branch/src/ZEO/ClientStorage.py
- real representation fix
Christian Theune
ct at gocept.com
Mon Feb 27 18:31:41 EST 2006
Log message for revision 65547:
- real representation fix
Changed:
U ZODB/branches/blob-merge-branch/src/ZEO/ClientStorage.py
-=-
Modified: ZODB/branches/blob-merge-branch/src/ZEO/ClientStorage.py
===================================================================
--- ZODB/branches/blob-merge-branch/src/ZEO/ClientStorage.py 2006-02-27 23:30:02 UTC (rev 65546)
+++ ZODB/branches/blob-merge-branch/src/ZEO/ClientStorage.py 2006-02-27 23:31:40 UTC (rev 65547)
@@ -968,8 +968,8 @@
blob_filename = self.fshelper.getBlobFilename(oid, serial)
# Case 1: Blob is available already, just use it
if os.path.exists(blob_filename):
- log2("Found blob %s/%s in cache." % (utils.repr_to_oid(oid),
- utils.repr_to_oid(serial)), level=BLATHER)
+ log2("Found blob %s/%s in cache." % (utils.oid_repr(oid),
+ utils.tid_repr(serial)), level=BLATHER)
return blob_filename
# Case 2,3: Blob might still be downloading or not there yet
@@ -996,8 +996,8 @@
# we just take the result.
if os.path.exists(blob_filename):
log2("Found blob %s/%s in cache after it was downloaded "
- "from another thread." % (utils.repr_to_oid(oid),
- utils.repr_to_oid(serial)), level=BLATHER)
+ "from another thread." % (utils.oid_repr(oid),
+ utils.tid_repr(serial)), level=BLATHER)
return blob_filename
# Otherwise we download and use that
More information about the Zodb-checkins
mailing list