immutable: Make more parts of download use logging mixins and know what their "parent msg id" is.

This commit is contained in:
Zooko O'Whielacronx
2009-01-08 11:25:30 -07:00
parent 2a443cd049
commit ecabcc674c
4 changed files with 16 additions and 15 deletions

View File

@ -361,7 +361,7 @@ class Client(node.Node, pollmixin.PollMixin):
else:
key = base32.b2a(u.storage_index)
cachefile = self.download_cache.get_file(key)
node = FileNode(u, self, cachefile) # CHK
node = FileNode(u.to_string(), self, cachefile) # CHK
else:
assert IMutableFileURI.providedBy(u), u
node = MutableFileNode(self).init_from_uri(u)