Skip to content

Commit

Permalink
Merge pull request #1059 from MetPX/issue927_2
Browse files Browse the repository at this point in the history
multi-instances will be partial, not missing
  • Loading branch information
petersilva authored May 21, 2024
2 parents 4fb2cdf + 92e5575 commit 852b931
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 @@ -1963,7 +1963,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 852b931

Please sign in to comment.