From dc983376438ee77c2a781157a390dc7dee971eed Mon Sep 17 00:00:00 2001 From: "sandipsamal117@gmail.com" Date: Tue, 23 Mar 2021 16:33:24 -0400 Subject: [PATCH] Removed preset limits & version bump --- setup.py | 2 +- simpledsapp/simpledsapp.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index c8c3eb9..202c596 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name = 'simpledsapp', - version = '2.0.1', + version = '2.0.2', description = 'A simple ChRIS ds app demo', long_description = readme, author = 'FNNDSC', diff --git a/simpledsapp/simpledsapp.py b/simpledsapp/simpledsapp.py index 715b7a0..d922ae5 100755 --- a/simpledsapp/simpledsapp.py +++ b/simpledsapp/simpledsapp.py @@ -124,10 +124,10 @@ class SimpleDSApp(ChrisApp): ICON = '' # url of an icon image MAX_NUMBER_OF_WORKERS = 1 # Override with integer value MIN_NUMBER_OF_WORKERS = 1 # Override with integer value - MAX_CPU_LIMIT = '4000M' # Override with millicore value as string, e.g. '2000m' - MIN_CPU_LIMIT = '1000M' # Override with millicore value as string, e.g. '2000m' - MAX_MEMORY_LIMIT = '4000Mi' # Override with string, e.g. '1Gi', '2000Mi' - MIN_MEMORY_LIMIT = '4000Mi' # Override with string, e.g. '1Gi', '2000Mi' + MAX_CPU_LIMIT = '' # Override with millicore value as string, e.g. '2000m' + MIN_CPU_LIMIT = '' # Override with millicore value as string, e.g. '2000m' + MAX_MEMORY_LIMIT = '' # Override with string, e.g. '1Gi', '2000Mi' + MIN_MEMORY_LIMIT = '' # Override with string, e.g. '1Gi', '2000Mi' MIN_GPU_LIMIT = 0 # Override with the minimum number of GPUs, as an integer, for your plugin MAX_GPU_LIMIT = 0 # Override with the maximum number of GPUs, as an integer, for your plugin