diff --git a/manifests/install.pp b/manifests/install.pp index 4cb79f6..04a082f 100644 --- a/manifests/install.pp +++ b/manifests/install.pp @@ -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], } diff --git a/spec/classes/selenium_install_spec.rb b/spec/classes/selenium_install_spec.rb index 9c6b8fa..986ff57 100644 --- a/spec/classes/selenium_install_spec.rb +++ b/spec/classes/selenium_install_spec.rb @@ -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