projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0826b1b
)
vdrive.py: log a note when we successfully retrieve the global root directory
author
Brian Warner
<warner@allmydata.com>
Tue, 17 Jul 2007 03:17:06 +0000
(20:17 -0700)
committer
Brian Warner
<warner@allmydata.com>
Tue, 17 Jul 2007 03:17:06 +0000
(20:17 -0700)
src/allmydata/vdrive.py
patch
|
blob
|
history
diff --git
a/src/allmydata/vdrive.py
b/src/allmydata/vdrive.py
index 48c3eea45c9b902c5bbbe46c9be583b2dd22f548..b103a204682b29043da2558a4d947d39aaca4347 100644
(file)
--- a/
src/allmydata/vdrive.py
+++ b/
src/allmydata/vdrive.py
@@
-45,10
+45,12
@@
class VirtualDrive(service.MultiService):
self._global_uri = f.read().strip()
f.close()
elif global_vdrive_furl:
+ self.parent.log("fetching global_uri")
d = tub.getReference(global_vdrive_furl)
d.addCallback(lambda vdrive_server:
vdrive_server.callRemote("get_public_root_uri"))
def _got_global_uri(global_uri):
+ self.parent.log("got global_uri")
self._global_uri = global_uri
f = open(global_uri_file, "w")
f.write(self._global_uri + "\n")