Skip to content

Commit 0831b04

Browse files
committed
Fix properties
1 parent 9d6428c commit 0831b04

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

airbyte_cdk/sources/file_based/remote_file.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ def file_uri_for_logging(self) -> str:
2222
"""Returns a user-friendly identifier for logging."""
2323
return self.uri
2424

25+
@property
26+
def source_uri(self) -> str:
27+
"""Returns the canonical source URI."""
28+
return self.uri
29+
2530

2631
class UploadableRemoteFile(RemoteFile, ABC):
2732
"""

0 commit comments

Comments
 (0)