You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Responsible for fetching the final result `urls` provided by the completed / finished / ready async job.
3245
3248
anyOf:
3246
3249
- "$ref": "#/definitions/CustomRecordExtractor"
@@ -3261,7 +3264,7 @@ definitions:
3261
3264
anyOf:
3262
3265
- "$ref": "#/definitions/CustomRequester"
3263
3266
- "$ref": "#/definitions/HttpRequester"
3264
-
url_requester:
3267
+
download_target_requester:
3265
3268
description: Requester component that describes how to prepare HTTP requests to send to the source API to extract the url from polling response by the completed async job.
description: The current stream interval being processed. The keys are defined by the incremental sync component. Default keys are `start_time` and `end_time`.
description="Requester component that describes how to prepare HTTP requests to send to the source API to extract the url from polling response by the completed async job.",
url_response=self.url_requester.send_request(stream_slice=stream_slice) # type: ignore # we expect url_requester to always be presented, otherwise raise an exception as we cannot proceed with the report
293
+
url_response=self.download_target_requester.send_request(stream_slice=stream_slice) # type: ignore # we expect download_target_requester to always be presented, otherwise raise an exception as we cannot proceed with the report
289
294
ifnoturl_response:
290
295
raiseAirbyteTracedException(
291
-
internal_message="Always expect a response or an exception from url_requester",
296
+
internal_message="Always expect a response or an exception from download_target_requester",
292
297
failure_type=FailureType.system_error,
293
298
)
294
299
295
-
yieldfromself.urls_extractor.extract_records(url_response) # type: ignore # we expect urls_extractor to always return list of strings
300
+
yieldfromself.download_target_extractor.extract_records(url_response) # type: ignore # we expect download_target_extractor to always return list of strings
0 commit comments