Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion airbyte_cdk/sources/file_based/file_based_stream_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def upload(
mime_type=file.mime_type,
created_at=file.created_at,
updated_at=file.updated_at,
source_uri=file.uri,
source_uri=file.source_uri,
)
file_reference = AirbyteRecordMessageFileReference(
staging_file_url=local_file_path,
Expand Down
7 changes: 7 additions & 0 deletions airbyte_cdk/sources/file_based/remote_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,10 @@ def file_uri_for_logging(self) -> str:
Returns the URI for the file being logged.
"""
return self.uri

@property
def source_uri(self) -> str:
"""
Returns the Source URI for the file being logged.
"""
return self.uri
Loading