Skip to content

Commit

Permalink
fix(ingest): fwk - fix how we import DataHub actions (#4784)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjoyce0510 authored Apr 29, 2022
1 parent 8583f39 commit 91f166c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metadata-ingestion/src/datahub/entrypoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ def init() -> None:
datahub.add_command(migrate)
datahub.add_command(timeline)
try:
import datahub_actions
from datahub_actions.cli.actions import actions

datahub.add_command(datahub_actions.cli.actions)
datahub.add_command(actions)
except ImportError:
# TODO: Increase the log level once this approach has been validated.
logger.debug(
Expand Down

0 comments on commit 91f166c

Please sign in to comment.