зеркало из
1
0
Форкнуть 0
This commit is contained in:
Krista Pratico 2021-07-23 09:43:08 -07:00 коммит произвёл GitHub
Родитель f0f09cf5c2
Коммит ee646d7c5d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -94,7 +94,7 @@ class DocumentTranslationLROPollingMethod(LROBasePolling):
def _get_id_from_headers(self):
# type: () -> str
return self._pipeline_response.http_response.headers[
return self._initial_response.http_response.headers[
"Operation-Location"
].split("/batches/")[1]

Просмотреть файл

@ -76,7 +76,7 @@ class AsyncDocumentTranslationLROPollingMethod(AsyncLROBasePolling):
return _TranslationStatus.deserialize(self._pipeline_response)
def _get_id_from_headers(self) -> str:
return self._pipeline_response.http_response.headers[
return self._initial_response.http_response.headers[
"Operation-Location"
].split("/batches/")[1]