Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.6k
[Filesystem] renameFilesystem::mirror()
optioncopy_on_windows
tofollow_symlinks
#47969
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:7.4
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Build failures seem to be unrelated to the change. |
Filesystem::mirror()
option copy_on_windows to follow_symlinkscarsonbot commentedOct 29, 2022
Hey! I think@gechetspr has recently worked with this code. Maybe they can help review this? Cheers! Carsonbot |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Looks good from my side. One minor comment is IMO nice to have, but it's working fine as it is
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
be1d2e2
toffb9ae5
CompareUh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
4b3f98e
tofdcc518
CompareFilesystem::mirror()
option copy_on_windows to follow_symlinksFilesystem::mirror()
optioncopy_on_windows
tofollow_symlinks
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
…o `follow_symlinks`
Uh oh!
There was an error while loading.Please reload this page.
This is a PR for#25798. In the issue is described, that the option copy_on_windows is a bit misleading, because there might be as well other usecases to follow the symlinks like copying to a different drive or a docker context which does not support symlinks.
The old option
copy_on_windows
is marked as deprecated with the hint to use the optionfollow_symlinks
, doing interally exactly the same. Just a renaming of the option with making the old one deprecated for no BC breaks.