Skip to content

Commit

Permalink
daemon config fix (#3324)
Browse files Browse the repository at this point in the history
  • Loading branch information
pared committed Feb 14, 2020
1 parent 7df06b2 commit 0c87771
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions dvc/command/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ def run(self):
root_dir = Repo.find_root()
dvc_dir = os.path.join(root_dir, Repo.DVC_DIR)
config = Config(dvc_dir, validate=False)
hardlink_lock = config.config.get("core", {}).get(
"hardlink_lock", False
)
hardlink_lock = config.get("core", {}).get("hardlink_lock", False)
updater = Updater(dvc_dir, hardlink_lock=hardlink_lock)
updater.fetch(detach=False)

Expand Down

0 comments on commit 0c87771

Please sign in to comment.