Skip to content

Commit

Permalink
Fix for docker start command
Browse files Browse the repository at this point in the history
  • Loading branch information
ulixius9 committed Oct 26, 2023
1 parent e7f3218 commit e2e54e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ingestion/src/metadata/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,8 @@ def metadata(args=None): # pylint: disable=too-many-branches
contains_args = vars(get_parser(args))
metadata_workflow = contains_args.get("command")
config_file = contains_args.get("config")
path = Path(config_file).expanduser()
if config_file:
path = Path(config_file).expanduser()
if contains_args.get("debug"):
set_loggers_level(logging.DEBUG)
elif contains_args.get("log_level"):
Expand Down

0 comments on commit e2e54e5

Please sign in to comment.