mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-20 03:36:25 +00:00
see if this fixes the AttributeError
This commit is contained in:
parent
35525bc10e
commit
58e0e3def7
@ -191,7 +191,11 @@ def create_storage_server(reactor, request, temp_dir, introducer, flog_gatherer,
|
||||
)
|
||||
storage = StorageServer(
|
||||
process=node_process,
|
||||
protocol=node_process.transport._protocol,
|
||||
# node_process is a TahoeProcess. its transport is an
|
||||
# IProcessTransport. in practice, this means it is a
|
||||
# twisted.internet._baseprocess.BaseProcess. BaseProcess records the
|
||||
# process protocol as its proto attribute.
|
||||
protocol=node_process.transport.proto,
|
||||
)
|
||||
returnValue(storage)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user