mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
vdrive.py: let put_file return the URI that was used for the file itself
This commit is contained in:
parent
813fdd70da
commit
73bb4f80af
@ -85,7 +85,9 @@ class VDrive(service.MultiService):
|
||||
def _got_dir(dirnode):
|
||||
d1 = ul.upload(uploadable)
|
||||
def _add(uri):
|
||||
return dirnode.callRemote("add_file", name, uri)
|
||||
d2 = dirnode.callRemote("add_file", name, uri)
|
||||
d2.addCallback(lambda res: uri)
|
||||
return d2
|
||||
d1.addCallback(_add)
|
||||
return d1
|
||||
d.addCallback(_got_dir)
|
||||
|
Loading…
Reference in New Issue
Block a user