Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions vulnerabilities/importers/istio.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ def updated_advisories(self) -> Set[Advisory]:
files = self._added_files.union(self._updated_files)
advisories = []
for f in files:
# Istio website has files with name starting with underscore, these contain metadata
# required for rendering the website. We're not interested in these.
# See also https://github.com/nexB/vulnerablecode/issues/563
if f.endswith("_index.md"):
continue
processed_data = self.process_file(f)
if processed_data:
advisories.extend(processed_data)
Expand Down