Skip to content

Commit ee47750

Browse files
committed
fix(plan): replace await with wait in add_inventory_hostnames
- Change await to wait for better compatibility and readability - Ensure all tasks complete before proceeding with the plan
1 parent 22d7705 commit ee47750

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/acceptance/peadm_spec/plans/add_inventory_hostnames.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
$t = get_targets('*')
55
wait_until_available($t)
66

7-
$fqdn_results = await(
7+
$fqdn_results = wait(
88
parallelize($t) |$target| {
99
$fqdn = run_command('hostname -f', $target)
1010
$target.set_var('certname', $fqdn.first['stdout'].chomp)

0 commit comments

Comments
 (0)