Merge pull request #366 from joker1007/fix-apply_request_options

Assign `open_timeout` option in `apply_request_options`
This commit is contained in:
Steve Bazyl 2016-02-23 15:01:22 -08:00
commit b191e60cfc
1 changed files with 1 additions and 0 deletions

View File

@ -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