From 7b7e4b425432461378e9963da386fcdc2d6278da Mon Sep 17 00:00:00 2001 From: Martyn Gigg <martyn.gigg@stfc.ac.uk> Date: Mon, 30 Jul 2018 12:34:09 +0100 Subject: [PATCH] Try 75% free memory before pause --- docs/source/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 062cdc8a281..2ab8f568b12 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -109,10 +109,9 @@ from mantid.api import FrameworkManager from mantid.kernel import MemoryStats FrameworkManager.Instance().clear() -if MemoryStats().getFreeRatio() < 0.5: +if MemoryStats().getFreeRatio() < 0.75: # sleep for short period to allow memory to be freed time.sleep(2) - """ # -- Options for pngmath -------------------------------------------------- -- GitLab