get_blob bug fix
This commit is contained in:
parent
60195ed6d4
commit
2c9c0da501
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ class DiskBlobManager(BlobManager):
|
||||||
for blob_hash, being_deleted in self.blob_hashes_to_delete.items():
|
for blob_hash, being_deleted in self.blob_hashes_to_delete.items():
|
||||||
if being_deleted is False:
|
if being_deleted is False:
|
||||||
self.blob_hashes_to_delete[blob_hash] = True
|
self.blob_hashes_to_delete[blob_hash] = True
|
||||||
d = self.get_blob(blob_hash)
|
d = self.get_blob(blob_hash, True)
|
||||||
d.addCallbacks(
|
d.addCallbacks(
|
||||||
delete, set_not_deleting,
|
delete, set_not_deleting,
|
||||||
callbackArgs=(blob_hash,), errbackArgs=(blob_hash,))
|
callbackArgs=(blob_hash,), errbackArgs=(blob_hash,))
|
||||||
|
|
Loading…
Reference in a new issue