Skip to content

Commit 7175cd4

Browse files
Fix changelog, debug failing tests
Signed-off-by: Nathalie Jonathan <[email protected]>
1 parent 1c6b2dc commit 7175cd4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.ci/opensearch/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ ARG opensearch_yml=$opensearch_path/config/opensearch.yml
1010
ARG SECURE_INTEGRATION
1111
RUN echo "plugins.ml_commons.only_run_on_ml_node: false" >> $opensearch_yml;
1212
RUN echo "plugins.ml_commons.native_memory_threshold: 100" >> $opensearch_yml;
13-
RUN echo "plugins.ml_commons.max_model_on_node: 20" >> $opensearch_yml;
1413
RUN if [ "$OPENSEARCH_VERSION" == "2.11.0" -o "$OPENSEARCH_VERSION" == "3.0.0-beta1" ] ; then \
1514
echo "plugins.ml_commons.model_access_control_enabled: true" >> $opensearch_yml; \
1615
echo "plugins.ml_commons.allow_registering_model_via_local_file: true" >> $opensearch_yml; \

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
### Added
77

88
### Changed
9+
- Update semantic highlighting sagemaker endpoint deploy scripts ([#585](https://github.com/opensearch-project/opensearch-py-ml/pull/585))
910

1011
### Fixed
1112

@@ -44,7 +45,6 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
4445
- Upgrade torch version to fix security issue ([#561](https://github.com/opensearch-project/opensearch-py-ml/pull/561))
4546
- Upgrade numpy and python version ([#562](https://github.com/opensearch-project/opensearch-py-ml/pull/562))
4647
- Update space type mapping for sentence transformer models ([#574](https://github.com/opensearch-project/opensearch-py-ml/pull/574))
47-
- Update semantic highlighting sagemaker endpoint deploy scripts ([#585](https://github.com/opensearch-project/opensearch-py-ml/pull/585))
4848

4949
### Fixed
5050
- Fix for uploading models with function_name instead of model_task ([#553](https://github.com/opensearch-project/opensearch-py-ml/pull/553))

opensearch_py_ml/ml_commons/ml_commons_client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,8 @@ def deploy_model(self, model_id: str, wait_until_deployed: bool = True) -> objec
366366
]
367367

368368
print(f"Task ID: {task_id}")
369+
get_deploy_task = self._get_task_info(task_id)
370+
print(f"Get deploy task: {get_deploy_task}")
369371
if wait_until_deployed:
370372
# Wait until deployed
371373
for i in range(TIMEOUT):

0 commit comments

Comments
 (0)