Skip to content

Commit

Permalink
Fixes #38055 - Send active=include for Product.all
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylenz committed Dec 2, 2024
1 parent 8201a7a commit a44149e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/katello/resources/candlepin/product.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Candlepin
class Product < CandlepinResource
class << self
def all(owner_label, included = [])
products = JSON.parse(Candlepin::CandlepinResource.get(path(owner_label) + "?#{included_list(included)}", self.default_headers).body)
products = JSON.parse(Candlepin::CandlepinResource.get(path(owner_label) + "?active=include&#{included_list(included)}", self.default_headers).body)
::Katello::Util::Data.array_with_indifferent_access products
end

Expand Down

0 comments on commit a44149e

Please sign in to comment.