mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-08 19:34:18 +00:00
vdrive: log an error if we weren't able to use the vdrive the way we wanted to
This commit is contained in:
parent
1545190b69
commit
d37d74fa1d
@ -101,6 +101,11 @@ class VirtualDrive(service.MultiService):
|
||||
self._private_root_observer.fire(self._private_uri)
|
||||
d.addCallback(_got_directory)
|
||||
|
||||
def _oops(f):
|
||||
self.log("error getting URIs from vdrive server")
|
||||
log.err(f)
|
||||
d.addErrback(_oops)
|
||||
|
||||
|
||||
def have_public_root(self):
|
||||
return bool(self._global_uri)
|
||||
|
Loading…
x
Reference in New Issue
Block a user