mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-21 10:01:54 +00:00
always set the "start time" timeout
in both the "we installed it ourselves" and the "we found an existing installation" cases.
This commit is contained in:
parent
3d2e4d0798
commit
c595eea33e
@ -511,7 +511,6 @@ def chutney(reactor, temp_dir: str) -> tuple[str, dict[str, str]]:
|
||||
chutney_dir,
|
||||
{
|
||||
"PYTHONPATH": join(chutney_dir, "lib"),
|
||||
"CHUTNEY_START_TIME": "600", # default is 60
|
||||
}
|
||||
)
|
||||
|
||||
@ -534,6 +533,10 @@ def tor_network(reactor, temp_dir, chutney, request):
|
||||
|
||||
env = environ.copy()
|
||||
env.update(chutney_env)
|
||||
env.update({
|
||||
# default is 60, probably too short for reliable automated use.
|
||||
"CHUTNEY_START_TIME": "600",
|
||||
})
|
||||
chutney_argv = (sys.executable, '-m', 'chutney.TorNet')
|
||||
def chutney(argv):
|
||||
proto = _DumpOutputProtocol(None)
|
||||
|
Loading…
x
Reference in New Issue
Block a user