kacpermuda commented on code in PR #40173:
URL: https://github.com/apache/airflow/pull/40173#discussion_r1675472243
##########
airflow/datasets/__init__.py:
##########
@@ -182,6 +190,28 @@ def __eq__(self, other: Any) -> bool:
def __hash__(self) -> int:
return hash(self.uri)
+ @property
+ def normalized_uri(self) -> str | None:
Review Comment:
I wrote it in the provider at first and it's not used anywhere else yet, but
it relates closely to a Dataset class and it uses only "core" mechanisms
related to the URI so i thought this is a suitable place for it and it makes a
lot of sense ot keep it closer to the Dataset class. Does it make sense?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]