Skip to content

Commit

Permalink
Increase timeouts for receive/send
Browse files Browse the repository at this point in the history
  • Loading branch information
krukow committed Jan 30, 2014
1 parent 37acd31 commit eb157fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions calabash-cucumber/lib/calabash-cucumber/http_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ def make_http_request(options)
def init_request(options={})
http = HTTPClient.new
http.connect_timeout = 30
http.send_timeout = 30
http.receive_timeout = 30
http.send_timeout = 120
http.receive_timeout = 120
if options[:debug] || (ENV['DEBUG_HTTP'] == '1' && options[:debug] != false)
http.debug_dev = $stdout
end
Expand Down

0 comments on commit eb157fe

Please sign in to comment.