-
Notifications
You must be signed in to change notification settings - Fork 101
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DirectorySource("..") causes an infinite copy loop, fills HDD #952
Comments
I'm scared to test this locally after reading "fills HDD" 😬 |
I probably should have added "eventually" 😆 It's not too catastrophic -- it seems to be recursively copying the files at about a rate of a few tens of MB/s on my system. So if you have at least a few tens of GB free, then it will be a while. But I think it can be a problem for users of BB, since BB is something you'd start up and then just let it run in the background. So it's likely you won't notice that it's stuck and slowly filling up the disk. |
This also happened to me but it fails before filling the disk with
|
This seems to be still happening...at first go (not knowing how long to expect things to take, etc.) I did fill about 300g with recursive copies. It seems that if you call After learning a bit more about binary builder, I tried to remove this step but still run into recursive copy issues with |
I guess ideally it would detect these circular cases and either error or avoid copying
build/
intobuild/
(which is what I think is happening here). MWE:which gets stuck after
The text was updated successfully, but these errors were encountered: