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
  • Loading branch information
jeremylenz committed Jan 17, 2024
1 parent dfe70e8 commit 3ac7cdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/models/katello/concerns/host_managed_extensions.rb
Expand Up @@ -542,9 +542,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 3ac7cdd

Please sign in to comment.