From 7c41c577d0f6d0b8245f71280e3eeb702819f1d6 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Sat, 6 Feb 2021 00:19:04 -0700 Subject: [PATCH] fix missing build-ui timeout argument --- hyperglass/cli/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperglass/cli/commands.py b/hyperglass/cli/commands.py index af7fe9a..b558430 100644 --- a/hyperglass/cli/commands.py +++ b/hyperglass/cli/commands.py @@ -105,7 +105,7 @@ def start(build, direct, workers): # noqa: C901 try: if build: - build_complete = build_ui() + build_complete = build_ui(timeout=180) if build_complete and not direct: start(**kwargs)