Skip to content

Commit

Permalink
Solved bug with slices
Browse files Browse the repository at this point in the history
Signed-off-by: onetti7 <[email protected]>
  • Loading branch information
onetti7 committed Jan 3, 2025
1 parent 28e2b5e commit 42399ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awx/main/models/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ def get_hosts_for_fact_cache(self):
host_qs = self.inventory.hosts

host_qs = host_qs.only(*HOST_FACTS_FIELDS)
host_qs = self.inventory.get_sliced_hosts(host_qs, self.job_slice_number, self.job_slice_count)
# host_qs = self.inventory.get_sliced_hosts(host_qs, self.job_slice_number, self.job_slice_count)
return host_qs


Expand Down

0 comments on commit 42399ab

Please sign in to comment.