File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 55
66 :license: MIT, see LICENSE for more details.
77"""
8- VERSION = 'v6.2.1 '
8+ VERSION = 'v6.2.2 '
99API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/'
1010API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/'
1111API_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):
2323 'Content-Type' : 'application/json' ,
2424 'User-Agent' : user_agent ,
2525 })
26- retry = Retry (connect = 3 , backoff_factor = 3 )
26+ retry = Retry (total = 3 , connect = 1 , backoff_factor = 1 )
2727 adapter = HTTPAdapter (max_retries = retry )
2828 client .mount ('https://' , adapter )
2929 return client
Original file line number Diff line number Diff line change 1515
1616setup (
1717 name = 'SoftLayer' ,
18- version = 'v6.2.1 ' ,
18+ version = 'v6.2.2 ' ,
1919 description = DESCRIPTION ,
2020 long_description = LONG_DESCRIPTION ,
2121 long_description_content_type = 'text/x-rst' ,
You can’t perform that action at this time.
0 commit comments