Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2110,11 +2110,11 @@ def create_default_stream(
name=stream_name,
json_schema=schema_loader.get_json_schema,
primary_key=get_primary_key_from_stream(primary_key),
cursor_field=concurrent_cursor.cursor_field
if hasattr(concurrent_cursor, "cursor_field")
else CursorField(
cursor_field_key=""
), # FIXME we should have the cursor field has part of the interface of cursor,
cursor_field=(
concurrent_cursor.cursor_field
if hasattr(concurrent_cursor, "cursor_field")
else None
),
logger=logging.getLogger(f"airbyte.{stream_name}"),
cursor=concurrent_cursor,
supports_file_transfer=hasattr(model, "file_uploader") and bool(model.file_uploader),
Expand Down
Loading