Skip to content

Commit 75d3cf9

Browse files
Merge pull request #46 from ostdotcom/develop
merging develop to release-2.0
2 parents 459bf4c + a35e0e5 commit 75d3cf9

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ notifications:
1515
on_failure: always
1616
branches:
1717
only:
18-
- master
1918
- develop
2019
- /^release-.*/
2120
script:

lib/config.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class Config
44
API_KEY = ENV['OST_KIT_API_KEY']
55
API_SECRET = ENV['OST_KIT_API_SECRET']
66
OST_SDK = OSTSdk::Saas::Services.new({api_key: API_KEY, api_secret: API_SECRET,
7-
api_base_url: API_BASE_URL, config: {timeout: 10}, api_spec: false})
7+
api_base_url: API_BASE_URL, config: {timeout: 60}, api_spec: false})
88

99
OST_KIT_COMPANY_USER_ID = ENV['OST_KIT_COMPANY_USER_ID']
1010
OST_KIT_AUX_CHAIN_ID = ENV['OST_KIT_AUX_CHAIN_ID']

lib/ost-sdk-ruby/util/http_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def initialize(params)
2323
@api_key = params[:api_key]
2424
@api_secret = params[:api_secret]
2525
@api_spec = params[:api_spec]
26-
@timeout = 10
26+
@timeout = 60
2727
if (params.key?(:config))
2828
config = params[:config]
2929
if (config.key?(:timeout))

0 commit comments

Comments
 (0)