Skip to content

Commit 8566607

Browse files
author
maxime.c
committed
Merge branch 'maxi297/bland_stream_instantiated_as_defaultstream' into maxi297/incremental_without_partition_router_as_defaultstream
2 parents f196ea7 + 7f643e4 commit 8566607

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2107,7 +2107,8 @@ def create_declarative_stream(
21072107
logger=logging.getLogger(f"airbyte.{stream_name}"),
21082108
# FIXME this is a breaking change compared to the old implementation which used the source name instead
21092109
cursor=cursor,
2110-
supports_file_transfer=hasattr(model, "file_uploader") and bool(model.file_uploader),
2110+
supports_file_transfer=hasattr(model, "file_uploader")
2111+
and bool(model.file_uploader),
21112112
)
21122113

21132114
cursor_field = model.incremental_sync.cursor_field if model.incremental_sync else None

0 commit comments

Comments
 (0)