Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Change retry timeout values
Browse files Browse the repository at this point in the history
  • Loading branch information
xlz-jbleclere committed Jul 20, 2022
1 parent 5139b80 commit 1639b34
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
* Thu Jul 4 2022 Accelize v2.5.5-alpha.1
- NEW: Support of new XRT v2.12 with new xbutil API
- FIX: Better handle low-level error messaging on CSP/XRT detection
* Wed Jul 20 2022 Accelize v2.5.5-rc.1
- NEW: Support of XRT v2.12 with new xbutil API
- FIX: Better handling of low-level messaging for CSP/XRT information

* Mon Mar 21 2022 Accelize v2.5.4
- NEW: Support of HDK v7.0.0.0-Fix.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cmake_minimum_required(VERSION 3.12)
# - Alpha : 1.0.0-alpha.1
# - Beta : 1.0.0-beta.1
# - Release candidate : 1.0.0-rc.1
set(ACCELIZEDRM_VERSION 2.5.5-alpha.1)
set(ACCELIZEDRM_VERSION 2.5.5-rc.1)

## Define package release number (Number of time this version was packaged)
if (NOT CPACK_PACKAGE_RELEASE)
Expand Down
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ def get_default_conf_json(licensing_server_url, drm_frequency):
},
"settings": {
"ws_connection_timeout": 3,
"ws_api_retry_duration": 10
"ws_request_timeout": 15,
"ws_api_retry_duration": 15
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/test_host_card_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,6 @@ def test_csp_format(accelize_drm, conf_json, cred_json, async_handler,
assert csp
assert match(r'ami-.*', csp.get('ami_id'))
assert match(r'i-.*', csp.get('instance_id'))
assert match(r'f1.\dxlarge', csp.get('instance_type'))
assert match(r'f1.\d+xlarge', csp.get('instance_type'))
assert csp.get('region')
async_cb.assert_NoError()

0 comments on commit 1639b34

Please sign in to comment.