From a4536d6824f09b8600f82d62ca70fbbade52dd25 Mon Sep 17 00:00:00 2001 From: Matthieu Dorier Date: Thu, 8 Feb 2024 13:09:14 +0000 Subject: [PATCH] added missing bootstrap option for SSG groups --- python/mochi/bedrock/spec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mochi/bedrock/spec.py b/python/mochi/bedrock/spec.py index e11c24f..c2e756d 100644 --- a/python/mochi/bedrock/spec.py +++ b/python/mochi/bedrock/spec.py @@ -1271,7 +1271,7 @@ class SSGSpec: validator=instance_of(int), default=-1) bootstrap: str = attr.ib( - validator=in_(['init', 'join', 'mpi', 'pmix'])) + validator=in_(['init', 'join', 'mpi', 'pmix', 'init|join', 'mpi|join', 'pmix|join'])) group_file: str = attr.ib( validator=instance_of(str), default='')