Skip to content

Commit

Permalink
all apache org domains
Browse files Browse the repository at this point in the history
  • Loading branch information
SemProvoost authored Dec 3, 2024
1 parent 4f9e2c9 commit eecfb12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/dependency/parser/java/pom/pom.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func (p *pom) repositories(servers []Server) ([]string, []string) {
// remove all people.apache.org repositories
// this domain is used to fetch pom files in some cases, but it just nearly always times out and makes everything extremely slow
// so we just skip it
if strings.Contains(repoURL.Host, "people.apache.org") {
if strings.Contains(repoURL.Host, ".apache.org") {
logger.Debug("Skipping people.apache.org repository", log.String("url", rep.URL))
continue
}
Expand Down

0 comments on commit eecfb12

Please sign in to comment.