From d7c4f04c88c23b232cb62e289a65c65720f9cf76 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Sun, 9 Apr 2023 22:23:21 -0400 Subject: [PATCH] [UPD] run: documentation memory RAM increase by force in script run.sh --- run.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run.sh b/run.sh index f797576..24a8483 100755 --- a/run.sh +++ b/run.sh @@ -12,6 +12,9 @@ if [ ! -f "${CONFIG_PATH}" ]; then fi python3 ./odoo/odoo-bin -c ${CONFIG_PATH} --limit-time-real 99999 --limit-time-cpu 99999 --limit-memory-hard=0 "$@" +# When need more memory RAM for instance by force +#python3 ./odoo/odoo-bin -c ${CONFIG_PATH} --limit-time-real 99999 --limit-time-cpu 99999 --limit-memory-soft=8589934592 --limit-memory-hard=10737418240 $@ + retVal=$? if [[ $retVal -ne 0 ]]; then echo "Error run.sh"