Skip to content

Commit

Permalink
multi-instances will be partial, not missing
Browse files Browse the repository at this point in the history
  • Loading branch information
petersilva committed May 18, 2024
1 parent 09e76c7 commit 92e5575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sarracenia/sr.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 92e5575

Please sign in to comment.