Skip to content

Commit

Permalink
Fixes relative_path fed back to katello by subman
Browse files Browse the repository at this point in the history
  • Loading branch information
m-bucher committed Jan 26, 2024
1 parent 9572000 commit 0cdd0ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/katello/root_repository.rb
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def format_custom_content_path
params = []
params << "comp=#{deb_components.gsub(" ", ",")}"
params << "rel=#{deb_releases.gsub(" ", ",")}"
path += "/?#{params.join('&')}"
path += "?#{params.join('&')}"
else
Rails.logger.warn("deb_use_structured_content is set, but repository #{self.name} is lacking deb_releases or deb_components, so we are defaulting to using simple content.")
unless Setting['deb_use_simple_publish']
Expand Down

0 comments on commit 0cdd0ac

Please sign in to comment.