Skip to content

Commit 6fb4b9c

Browse files
nemanjarajicsofiar-msft
authored andcommitted
Batch endpoint fix serialization error (Azure#34205)
1 parent 1d7d57f commit 6fb4b9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/ml/azure-ai-ml/azure/ai/ml/_ml_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ def __init__(
521521
self._batch_endpoints = BatchEndpointOperations(
522522
self._operation_scope,
523523
self._operation_config,
524-
self._service_client_05_2022,
524+
self._service_client_10_2023,
525525
self._operation_container,
526526
self._credential,
527527
requests_pipeline=self._requests_pipeline,

sdk/ml/azure-ai-ml/azure/ai/ml/_schema/_endpoint/batch/batch_endpoint_defaults.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from marshmallow import fields, post_load
1111

12-
from azure.ai.ml._restclient.v2022_05_01.models import BatchEndpointDefaults
12+
from azure.ai.ml._restclient.v2023_10_01.models import BatchEndpointDefaults
1313
from azure.ai.ml._schema.core.schema import PatchedSchemaMeta
1414

1515
module_logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)