Skip to content

Commit

Permalink
* add proper error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sbbroot committed May 6, 2022
1 parent 8156fe0 commit eae4113
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def parse_manifest(self) -> Dict[str, Any]:
pass

if len(parsed_docs) != len(parse_doc.keys()):
raise CriticalError(f'{parsed_docs ^ parse_doc.keys()}')
raise CriticalError(f'ManifestReader - could not find documents: {parsed_docs ^ parse_doc.keys()}')

return {'detected-components': sorted(list(self.__detected_components)),
'detected-services': sorted(list(self.__detected_services))}

0 comments on commit eae4113

Please sign in to comment.