Skip to content

Commit

Permalink
Refs #35713 - correctly call methods with kwargs (Katello#10845)
Browse files Browse the repository at this point in the history
(cherry picked from commit 3ac7cdd)
  • Loading branch information
jeremylenz authored and nadjaheitmann committed Mar 4, 2024
1 parent d52e363 commit d87e60a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/models/katello/concerns/host_managed_extensions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -555,9 +555,9 @@ def rhel_eos_schedule_index

def package_names_for_job_template(action:, search:, versions: nil)
if self.operatingsystem.family == 'Debian'
deb_names_for_job_template(action, search)
deb_names_for_job_template(action: action, search: search)
else
yum_names_for_job_template(action, search, versions)
yum_names_for_job_template(action: action, search: search, versions: versions)
end
end

Expand Down

0 comments on commit d87e60a

Please sign in to comment.