diff --git a/sap_hana/README.md b/sap_hana/README.md index 7ed446e08c3f7..35aa511bd1174 100644 --- a/sap_hana/README.md +++ b/sap_hana/README.md @@ -14,13 +14,13 @@ The SAP HANA check is included in the [Datadog Agent][2] package. To use this in For Unix: ```text -sudo -Hu dd-agent /opt/datadog-agent/embedded/bin/pip install hdbcli==2.10.15 +sudo -Hu dd-agent /opt/datadog-agent/embedded/bin/pip install hdbcli==2.21.28 ``` For Windows: ```text -"C:\Program Files\Datadog\Datadog Agent\embedded\python.exe" -m pip install hdbcli==2.10.15 +"C:\Program Files\Datadog\Datadog Agent\embedded\python.exe" -m pip install hdbcli==2.21.28 ``` #### Prepare HANA diff --git a/sap_hana/hatch.toml b/sap_hana/hatch.toml index 7fa95bad2ad05..8d03ce1ae83df 100644 --- a/sap_hana/hatch.toml +++ b/sap_hana/hatch.toml @@ -2,7 +2,7 @@ [envs.default] dependencies = [ - "hdbcli==2.10.15", + "hdbcli==2.21.28", ] [[envs.default.matrix]] diff --git a/sap_hana/tests/common.py b/sap_hana/tests/common.py index 1a9e7f01c276c..86214cd8d158a 100644 --- a/sap_hana/tests/common.py +++ b/sap_hana/tests/common.py @@ -14,7 +14,7 @@ CONFIG = {'server': SERVER, 'port': PORT, 'username': 'datadog', 'password': 'Datadog9000', 'timeout': TIMEOUT} ADMIN_CONFIG = {'server': SERVER, 'port': PORT, 'username': 'system', 'password': 'Admin1337'} -E2E_METADATA = {'start_commands': ['pip install hdbcli==2.10.15']} +E2E_METADATA = {'start_commands': ['pip install hdbcli==2.21.28']} CAN_CONNECT_SERVICE_CHECK = 'sap_hana.{}'.format(SapHanaCheck.SERVICE_CHECK_CONNECT)