Skip to content

Commit

Permalink
remove --silent from edenfsctl prefetch call in copytree.py
Browse files Browse the repository at this point in the history
Summary:
X-link: facebookincubator/velox#7073

`--silent` is the default mode for `edenfsctl prefetch` and the flag is deprecated. Removing this flag is a no-op

Reviewed By: xavierd

Differential Revision: D50287572

fbshipit-source-id: 76f1eaa6ce3b3c7efb58882449fd67787787b4d1
  • Loading branch information
genevievehelsel authored and facebook-github-bot committed Oct 24, 2023
1 parent 84d8cd7 commit aca3925
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions build/fbcode_builder/getdeps/copytree.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ def prefetch_dir_if_eden(dirpath) -> None:
return
glob = f"{os.path.relpath(dirpath, root).replace(os.sep, '/')}/**"
print(f"Prefetching {glob}")
subprocess.call(
["edenfsctl", "prefetch", "--repo", root, "--silent", glob, "--background"]
)
subprocess.call(["edenfsctl", "prefetch", "--repo", root, glob, "--background"])
PREFETCHED_DIRS.add(dirpath)


Expand Down

0 comments on commit aca3925

Please sign in to comment.