From b0173dc57a4fcd02dbfd6c75fbab7c991ef633cc Mon Sep 17 00:00:00 2001 From: joker1007 Date: Wed, 24 Feb 2016 02:55:55 +0900 Subject: [PATCH] Assign `open_timeout` option in `apply_request_options` --- lib/google/apis/core/http_command.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/google/apis/core/http_command.rb b/lib/google/apis/core/http_command.rb index d18eb85f2..73b736dda 100644 --- a/lib/google/apis/core/http_command.rb +++ b/lib/google/apis/core/http_command.rb @@ -292,6 +292,7 @@ module Google end req.header.update(header) req.options.timeout = options.timeout_sec + req.options.open_timeout = options.open_timeout_sec end private