Skip to content

Commit 6a064c7

Browse files
author
Shailesh Shiwalkar
committed
[API] OPSAPS-37912 part 3 Change the CM API to v15 for CM5.10
CM Python API side changes. This change is only for cm5-5.x branch. Testing: make test (from python dir) mvn install (from java dir)
1 parent 2e65c05 commit 6a064c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
setup(
4646
name = 'cm_api',
47-
version = '14.0.0', # Compatible with API v14 (CM 5.9)
47+
version = '15.0.0', # Compatible with API v15 (CM 5.10)
4848
packages = find_packages(src_dir, exclude=['cm_api_tests']),
4949
package_dir = {'': src_dir },
5050
zip_safe = True,

python/src/cm_api/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
LOG = logging.getLogger(__name__)
3131

3232
API_AUTH_REALM = "Cloudera Manager"
33-
API_CURRENT_VERSION = 14
33+
API_CURRENT_VERSION = 15
3434

3535
class ApiException(RestException):
3636
"""

0 commit comments

Comments
 (0)