Skip to content

Commit 68d1861

Browse files
author
Joshua Hoblitt
committed
increase wget timeout 30s -> 90s
To avoid failures seen due to lag spikes
1 parent 9148bbf commit 68d1861

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

manifests/install.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
wget::fetch { 'selenium-server-standalone':
7373
source => $jar_url,
7474
destination => "${jar_path}/${jar_name}",
75-
timeout => 30,
75+
timeout => 90,
7676
execuser => $selenium::server::user,
7777
require => File[$jar_path],
7878
}

spec/classes/selenium_install_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
should contain_wget__fetch('selenium-server-standalone').with({
3636
'source' => 'https://selenium.googlecode.com/files/selenium-server-standalone-2.35.0.jar',
3737
'destination' => '/opt/selenium/jars/selenium-server-standalone-2.35.0.jar',
38-
'timeout' => '30',
38+
'timeout' => '90',
3939
'execuser' => 'selenium',
4040
})
4141
end

0 commit comments

Comments
 (0)