mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-20 17:52:50 +00:00
make sure the StorageServer goes underneath the client's basedir
This commit is contained in:
parent
eee7d0d814
commit
3fe3d13d29
@ -1,5 +1,5 @@
|
||||
|
||||
import sha
|
||||
import os, sha
|
||||
from foolscap import Referenceable
|
||||
from twisted.application import service
|
||||
from twisted.python import log
|
||||
@ -25,7 +25,7 @@ class Client(node.Node, Referenceable):
|
||||
self.queen = None # self.queen is either None or a RemoteReference
|
||||
self.all_peers = set()
|
||||
self.connections = {}
|
||||
self.add_service(StorageServer(self.STOREDIR))
|
||||
self.add_service(StorageServer(os.path.join(basedir, self.STOREDIR)))
|
||||
self.add_service(Uploader())
|
||||
self.queen_pburl = None
|
||||
self.queen_connector = None
|
||||
|
Loading…
x
Reference in New Issue
Block a user