diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-03-26 05:54:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-26 05:54:39 +0200 |
commit | 88b32511cf69059e8eab0e8fc8ceb23c0e449c3e (patch) | |
tree | b3459d9fcb940f789c72d2ce4cdabccd68695fa8 /scripts | |
parent | f76a9d7c96dbed50ee1fb9da56bcff818ea2eb5b (diff) | |
download | bugzilla-88b32511cf69059e8eab0e8fc8ceb23c0e449c3e.tar.gz bugzilla-88b32511cf69059e8eab0e8fc8ceb23c0e449c3e.tar.xz |
no bug - fix jobqueue command to run with multiplexed json output
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/entrypoint.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/entrypoint.pl b/scripts/entrypoint.pl index 5c981c5c2..ce1cc795b 100755 --- a/scripts/entrypoint.pl +++ b/scripts/entrypoint.pl @@ -91,9 +91,10 @@ sub cmd_httpd { } sub cmd_jobqueue { + my (@args) = @_; check_data_dir(); wait_for_db(); - exit run_cereal_and_jobqueue()->get; + exit run_cereal_and_jobqueue(@args)->get; } sub cmd_dev_httpd { |