Skip to content

Commit 8555d14

Browse files
catalinaperaltacperaltah
andauthoredMar 26, 2025
[document intelligence] Fix copy operation polling (#40105)
* fix copy operation polling * spelling * remove import * release prep * pylint * date --------- Co-authored-by: catalinaperalta <caperal@microsoft.com>
1 parent 4d05b49 commit 8555d14

File tree

4 files changed

+24
-22
lines changed

4 files changed

+24
-22
lines changed
 

‎sdk/documentintelligence/azure-ai-documentintelligence/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release History
22

3+
## 1.0.2 (2025-03-26)
4+
5+
### Bugs Fixed
6+
7+
- Fix polling for `begin_copy_classifier_to()` to stop on success response from the "Operation-Location" endpoint and correctly parse the result.
8+
39
## 1.0.1 (2025-03-13)
410

511
### Bugs Fixed

‎sdk/documentintelligence/azure-ai-documentintelligence/azure/ai/documentintelligence/_operations/_patch.py

+11-16
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from azure.core.pipeline import PipelineResponse
1616
from azure.core.polling import LROPoller, NoPolling, PollingMethod
17-
from azure.core.polling.base_polling import LROBasePolling, OperationResourcePolling
17+
from azure.core.polling.base_polling import LROBasePolling
1818
from azure.core.rest import HttpRequest, HttpResponse
1919
from azure.core.tracing.decorator import distributed_trace
2020
from azure.core.utils import case_insensitive_dict
@@ -41,17 +41,6 @@ def _parse_operation_id(operation_location_header):
4141
return re.match(regex, operation_location_header).group(1)
4242

4343

44-
class DocumentModelAdministrationPolling(OperationResourcePolling):
45-
"""Polling method overrides for administration endpoints."""
46-
47-
def get_final_get_url(self, pipeline_response: Any) -> None:
48-
"""If a final GET is needed, returns the URL.
49-
50-
:param any pipeline_response: The pipeline response to get the final url.
51-
:rtype: None
52-
"""
53-
return None
54-
5544
class AnalyzeDocumentLROPoller(LROPoller[PollingReturnType_co]):
5645
@property
5746
def details(self) -> Mapping[str, Any]:
@@ -295,7 +284,7 @@ def get_long_running_output(pipeline_response):
295284
"str", response.headers.get("Operation-Location")
296285
)
297286

298-
deserialized = _deserialize(_models.DocumentModelDetails, response.json()["result"])
287+
deserialized = _deserialize(_models.DocumentModelDetails, response.json().get("result"))
299288
if cls:
300289
return cls(pipeline_response, deserialized, response_headers) # type: ignore
301290
return deserialized
@@ -306,7 +295,13 @@ def get_long_running_output(pipeline_response):
306295

307296
if polling is True:
308297
polling_method: PollingMethod = cast(
309-
PollingMethod, LROBasePolling(lro_delay, path_format_arguments=path_format_arguments, lro_algorithms=[DocumentModelAdministrationPolling()], **kwargs)
298+
PollingMethod,
299+
LROBasePolling(
300+
lro_delay,
301+
path_format_arguments=path_format_arguments,
302+
lro_options={"final-state-via": "operation-location"},
303+
**kwargs,
304+
),
310305
)
311306
elif polling is False:
312307
polling_method = cast(PollingMethod, NoPolling())
@@ -359,7 +354,7 @@ def get_long_running_output(pipeline_response):
359354
"str", response.headers.get("Operation-Location")
360355
)
361356

362-
deserialized = _deserialize(_models.DocumentClassifierDetails, response.json())
357+
deserialized = _deserialize(_models.DocumentClassifierDetails, response.json().get("result"))
363358
if cls:
364359
return cls(pipeline_response, deserialized, response_headers) # type: ignore
365360
return deserialized
@@ -370,7 +365,7 @@ def get_long_running_output(pipeline_response):
370365

371366
if polling is True:
372367
polling_method: PollingMethod = cast(
373-
PollingMethod, LROBasePolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs)
368+
PollingMethod, LROBasePolling(lro_delay, path_format_arguments=path_format_arguments, lro_options={"final-state-via": "operation-location"}, **kwargs)
374369
)
375370
elif polling is False:
376371
polling_method = cast(PollingMethod, NoPolling())

‎sdk/documentintelligence/azure-ai-documentintelligence/azure/ai/documentintelligence/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "1.0.1"
9+
VERSION = "1.0.2"

‎sdk/documentintelligence/azure-ai-documentintelligence/azure/ai/documentintelligence/aio/_operations/_patch.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pylint: disable=line-too-long,useless-suppression
12
# ------------------------------------
23
# Copyright (c) Microsoft Corporation.
34
# Licensed under the MIT License.
@@ -23,7 +24,7 @@
2324
)
2425
from ... import models as _models
2526
from ..._model_base import _deserialize
26-
from ..._operations._patch import PollingReturnType_co, _parse_operation_id, DocumentModelAdministrationPolling
27+
from ..._operations._patch import PollingReturnType_co, _parse_operation_id
2728

2829
if sys.version_info >= (3, 9):
2930
from collections.abc import MutableMapping
@@ -265,7 +266,7 @@ def get_long_running_output(pipeline_response):
265266
"str", response.headers.get("Operation-Location")
266267
)
267268

268-
deserialized = _deserialize(_models.DocumentModelDetails, response.json()["result"])
269+
deserialized = _deserialize(_models.DocumentModelDetails, response.json().get("result"))
269270
if cls:
270271
return cls(pipeline_response, deserialized, response_headers) # type: ignore
271272
return deserialized
@@ -280,7 +281,7 @@ def get_long_running_output(pipeline_response):
280281
AsyncLROBasePolling(
281282
lro_delay,
282283
path_format_arguments=path_format_arguments,
283-
lro_algorithms=[DocumentModelAdministrationPolling()],
284+
lro_options={"final-state-via": "operation-location"},
284285
**kwargs
285286
),
286287
)
@@ -332,7 +333,7 @@ def get_long_running_output(pipeline_response):
332333
"str", response.headers.get("Operation-Location")
333334
)
334335

335-
deserialized = _deserialize(_models.DocumentClassifierDetails, response.json())
336+
deserialized = _deserialize(_models.DocumentClassifierDetails, response.json().get("result"))
336337
if cls:
337338
return cls(pipeline_response, deserialized, response_headers) # type: ignore
338339
return deserialized
@@ -344,7 +345,7 @@ def get_long_running_output(pipeline_response):
344345
if polling is True:
345346
polling_method: AsyncPollingMethod = cast(
346347
AsyncPollingMethod,
347-
AsyncLROBasePolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs),
348+
AsyncLROBasePolling(lro_delay, path_format_arguments=path_format_arguments, lro_options={"final-state-via": "operation-location"}, **kwargs),
348349
)
349350
elif polling is False:
350351
polling_method = cast(AsyncPollingMethod, AsyncNoPolling())

0 commit comments

Comments
 (0)
Please sign in to comment.