From ba4275ad00c5719462ab92faca90a8465ef7174f Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Mon, 8 Jul 2019 23:37:22 -0400 Subject: [PATCH] validate:launcher: Pass the right timeout_factor is passed to subprojects --- validate/launcher/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate/launcher/main.py b/validate/launcher/main.py index 8fbc4f4a9d..898ef63c31 100644 --- a/validate/launcher/main.py +++ b/validate/launcher/main.py @@ -582,7 +582,7 @@ def setup_launcher_from_args(args, main_options=None): if main_options: # Override output directories and logging properties of the sub launcher. for option in ["main_dir", "output_dir", "logsdir", "dest", "clone_dir", - "redirect_logs", "verbose"]: + "redirect_logs", "verbose", "timeout_factor"]: setattr(options, option, getattr(main_options, option)) if not options.cleanup(): return False, None, None