Skip to content

Commit edd7df0

Browse files
committed
Fixes #38355 - Adjust boot retry for vmware 8
1 parent c056501 commit edd7df0

File tree

1 file changed

+1
-1
lines changed
  • app/models/concerns/foreman_bootdisk/compute_resources

1 file changed

+1
-1
lines changed

app/models/concerns/foreman_bootdisk/compute_resources/vmware.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def parse_args(args = {})
1212
if args[:provision_method] == 'bootdisk'
1313
args[:cdroms] = [new_cdrom]
1414
args[:boot_order] = %w[cdrom disk]
15-
args[:boot_retry] = 10
15+
args[:boot_retry] = 10 * 1000 # boot_retry is in ms. Shortest is 10s
1616
end
1717
args
1818
end

0 commit comments

Comments
 (0)