Skip to content

Commit

Permalink
increase wget timeout 30s -> 90s
Browse files Browse the repository at this point in the history
To avoid failures seen due to lag spikes
  • Loading branch information
Joshua Hoblitt committed Oct 1, 2013
1 parent 9148bbf commit 68d1861
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
wget::fetch { 'selenium-server-standalone':
source => $jar_url,
destination => "${jar_path}/${jar_name}",
timeout => 30,
timeout => 90,
execuser => $selenium::server::user,
require => File[$jar_path],
}
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/selenium_install_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
should contain_wget__fetch('selenium-server-standalone').with({
'source' => 'https://selenium.googlecode.com/files/selenium-server-standalone-2.35.0.jar',
'destination' => '/opt/selenium/jars/selenium-server-standalone-2.35.0.jar',
'timeout' => '30',
'timeout' => '90',
'execuser' => 'selenium',
})
end
Expand Down

0 comments on commit 68d1861

Please sign in to comment.