diff options
author | Sunil Shetye | 2025-06-19 10:28:04 +0530 |
---|---|---|
committer | Sunil Shetye | 2025-06-19 10:28:04 +0530 |
commit | 60446b465deafeba535fab465bb0fdee9aaca02c (patch) | |
tree | f2b1623797b2df573f730d9ca8bf01cca42b0b63 | |
parent | 595078fc994f93b2e1fd2e4d449a881bc388aee5 (diff) | |
download | Common-Interface-Project-60446b465deafeba535fab465bb0fdee9aaca02c.tar.gz Common-Interface-Project-60446b465deafeba535fab465bb0fdee9aaca02c.tar.bz2 Common-Interface-Project-60446b465deafeba535fab465bb0fdee9aaca02c.zip |
increase default instances by 1
-rw-r--r-- | blocks/simulationAPI/helpers/config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/blocks/simulationAPI/helpers/config.py b/blocks/simulationAPI/helpers/config.py index 246f4c1f..e91e6f63 100644 --- a/blocks/simulationAPI/helpers/config.py +++ b/blocks/simulationAPI/helpers/config.py @@ -6,9 +6,9 @@ SESSIONTIMEOUT = 21600 # the instances -SCILAB_MIN_INSTANCES = int(os.environ.get('SCILAB_MIN_INSTANCES', '1')) -SCILAB_START_INSTANCES = int(os.environ.get('SCILAB_START_INSTANCES', '2')) -SCILAB_MAX_INSTANCES = int(os.environ.get('SCILAB_MAX_INSTANCES', '3')) +SCILAB_MIN_INSTANCES = int(os.environ.get('SCILAB_MIN_INSTANCES', '2')) +SCILAB_START_INSTANCES = int(os.environ.get('SCILAB_START_INSTANCES', '3')) +SCILAB_MAX_INSTANCES = int(os.environ.get('SCILAB_MAX_INSTANCES', '4')) SCILAB_INSTANCE_RETRY_INTERVAL = int(os.environ.get('SCILAB_INSTANCE_RETRY_INTERVAL', '5')) SCILAB_INSTANCE_TIMEOUT_INTERVAL = 300 |