Skip to content

Commit

Permalink
Do not return an error for failed list commands. Just log.
Browse files Browse the repository at this point in the history
  • Loading branch information
Genevieve LEsperance committed Feb 8, 2018
1 parent ff7dd05 commit 404e91d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/leftovers.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (l Leftovers) Delete(filter string) error {
for _, r := range l.resources {
list, err := r.List(filter)
if err != nil {
return err
l.logger.Println(err.Error())
}

deletables = append(deletables, list...)
Expand Down

0 comments on commit 404e91d

Please sign in to comment.