Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Jan 31, 2024
1 parent 886a513 commit 5cacfd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions metadata-ingestion/src/datahub/emitter/mce_builder.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Convenience functions for creating MCEs"""

import hashlib
import json
import logging
Expand Down
2 changes: 1 addition & 1 deletion metadata-ingestion/src/datahub/ingestion/api/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def _set_dataset_urn_to_lower_if_needed(self) -> None:
# TODO: Get rid of this function once lower-casing is the standard.
if self.graph:
server_config = self.graph.get_config()
if server_config and server_config.get("datasetUrnNameCasing"):
if server_config and server_config.get("datasetUrnNameCasing") is True:
set_dataset_urn_to_lower(True)

def register_checkpointer(self, committable: Committable) -> None:
Expand Down

0 comments on commit 5cacfd8

Please sign in to comment.