From 92e5575d0c8c71953ba3755076c5fa4acaa210bd Mon Sep 17 00:00:00 2001 From: Peter Silva Date: Sat, 18 May 2024 10:58:27 -0400 Subject: [PATCH] multi-instances will be partial, not missing --- sarracenia/sr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sarracenia/sr.py b/sarracenia/sr.py index de7ac2be2..1cb989563 100755 --- a/sarracenia/sr.py +++ b/sarracenia/sr.py @@ -1981,7 +1981,7 @@ def sanity(self): component_path = self._find_component_path(c) if component_path == '': continue - if self.configs[c][cfg]['status'] in ['missing']: + if self.configs[c][cfg]['status'] in ['missing', 'partial']: numi = self.configs[c][cfg]['instances'] for i in range(1, numi + 1): if pcount % 10 == 0: print('.', end='', flush=True)