Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion cmd/autoowners/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func getOwnersHTTP(fg FileGetter, orgRepo orgRepo, filenames ownersconfig.Filena
if _, nf := err.(*github.FileNotFound); nf {
logrus.WithField("orgRepo", orgRepo.repoString()).WithField("filename", filename).
Debug("Not found file in the upstream repo")
continue
break
}
return httpResult, err
}
Expand Down
6 changes: 2 additions & 4 deletions cmd/autoowners/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -367,10 +367,8 @@ aliases:
Organization: "org4",
Repository: "repo4",
},
expectedHTTPResult: httpResult{
repoAliases: ra,
},
expectedError: nil,
expectedHTTPResult: httpResult{},
expectedError: nil,
},
{
description: "owner is with normal error",
Expand Down