File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
airbyte_cdk/sources/declarative/parsers Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -3441,11 +3441,14 @@ def create_async_retriever(
34413441 ** kwargs : Any ,
34423442 ) -> AsyncRetriever :
34433443 def _get_download_retriever () -> SimpleRetriever :
3444+ # We create a record selector for the download retriever
3445+ # with no schema normalization and no transformations, neither record filter
3446+ # as all this occurs in the record_selector of the AsyncRetriever
34443447 record_selector = RecordSelector (
34453448 extractor = download_extractor ,
34463449 name = name ,
34473450 record_filter = None ,
3448- transformations = transformations ,
3451+ transformations = [] ,
34493452 schema_normalization = TypeTransformer (TransformConfig .NoTransform ),
34503453 config = config ,
34513454 parameters = {},
You can’t perform that action at this time.
0 commit comments