mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-11 20:11:47 +00:00
see if this fixes the AttributeError
This commit is contained in:
@ -191,7 +191,11 @@ def create_storage_server(reactor, request, temp_dir, introducer, flog_gatherer,
|
|||||||
)
|
)
|
||||||
storage = StorageServer(
|
storage = StorageServer(
|
||||||
process=node_process,
|
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)
|
returnValue(storage)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user