--- lib/constants.py | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/lib/constants.py b/lib/constants.py index b2f085a..2a36acb 100644 --- a/lib/constants.py +++ b/lib/constants.py @@ -950,13 +950,24 @@ VALID_IALLOCATOR_DIRECTIONS = frozenset([ IALLOCATOR_MODE_ALLOC = "allocate" IALLOCATOR_MODE_RELOC = "relocate" IALLOCATOR_MODE_MEVAC = "multi-evacuate" +IALLOCATOR_MODE_MRELOC = "multi-relocate" VALID_IALLOCATOR_MODES = frozenset([ IALLOCATOR_MODE_ALLOC, IALLOCATOR_MODE_RELOC, IALLOCATOR_MODE_MEVAC, + IALLOCATOR_MODE_MRELOC, ]) IALLOCATOR_SEARCH_PATH = _autoconf.IALLOCATOR_SEARCH_PATH +IALLOCATOR_MRELOC_ANY = "any_group" +IALLOCATOR_MRELOC_CHANGE = "change_group" +IALLOCATOR_MRELOC_KEEP = "keep_group" +IALLOCATOR_MRELOC_MODES = frozenset([ + IALLOCATOR_MRELOC_ANY, + IALLOCATOR_MRELOC_CHANGE, + IALLOCATOR_MRELOC_KEEP, + ]) + # Job queue JOB_QUEUE_VERSION = 1 JOB_QUEUE_LOCK_FILE = QUEUE_DIR + "/lock" -- 1.7.3.5
