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
Fix Invalid URN syntax error
  • Loading branch information
remisalmon committed Jun 22, 2021
commit fbe07d490717a6caf2fd00fd92018457f1fa5cff
2 changes: 1 addition & 1 deletion metadata-ingestion/src/datahub/ingestion/source/lookml.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ def _build_dataset_mce(self, looker_view: LookerView) -> MetadataChangeEvent:
sys_time = int(time.time()) * 1000

dataset_snapshot = DatasetSnapshot(
urn=f"urn:li:dataset:(urn:li:dataPlatform:{self.source_config.platform_name}, {dataset_name}, {self.source_config.env})",
urn=f"urn:li:dataset:(urn:li:dataPlatform:{self.source_config.platform_name},{dataset_name},{self.source_config.env})",
aspects=[], # we append to this list later on
)
dataset_snapshot.aspects.append(Status(removed=False))
Expand Down