set headless=true

This commit is contained in:
felixlohmeier 2022-04-20 10:51:51 +00:00
parent dec171f4e3
commit 81767a7f86
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ if curl -fs "${OPENREFINE_URL}" &>/dev/null; then
fi fi
# start OpenRefine with tmp workspace and autosave period 25 hours # start OpenRefine with tmp workspace and autosave period 25 hours
$openrefine -d "$tmpdir" -m "${args[--memory]}" -p "${args[--port]}" -x refine.autosave=1440 -v warn &>"$tmpdir/openrefine.log" & REFINE_AUTOSAVE_PERIOD=1440 $openrefine -d "$tmpdir" -m "${args[--memory]}" -p "${args[--port]}" -x refine.headless=true -v warn &>"$tmpdir/openrefine.log" &
openrefine_pid="$!" openrefine_pid="$!"
# update trap to kill OpenRefine on error or exit # update trap to kill OpenRefine on error or exit