File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
6
6
:license: MIT, see LICENSE for more details.
7
7
"""
8
- VERSION = 'v6.2.1 '
8
+ VERSION = 'v6.2.2 '
9
9
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/'
10
10
API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/'
11
11
API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3.1/'
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ def get_session(user_agent):
23
23
'Content-Type' : 'application/json' ,
24
24
'User-Agent' : user_agent ,
25
25
})
26
- retry = Retry (connect = 3 , backoff_factor = 3 )
26
+ retry = Retry (total = 3 , connect = 1 , backoff_factor = 1 )
27
27
adapter = HTTPAdapter (max_retries = retry )
28
28
client .mount ('https://' , adapter )
29
29
return client
Original file line number Diff line number Diff line change 15
15
16
16
setup (
17
17
name = 'SoftLayer' ,
18
- version = 'v6.2.1 ' ,
18
+ version = 'v6.2.2 ' ,
19
19
description = DESCRIPTION ,
20
20
long_description = LONG_DESCRIPTION ,
21
21
long_description_content_type = 'text/x-rst' ,
You can’t perform that action at this time.
0 commit comments