-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
pin add needs a progress bar #3624
Comments
Problem is, it's most likely doing FetchGraph, and it's impossible to tell when it stops until it's done. Show number of fetched nodes/bytes? |
Yeah, thats most of the reason why we don't have a progress bar for this yet. We could do something cool with passing the progress updater down inside a context, and then in the FetchGraph code updating our 'nodes to fetch' and 'nodes fetched' counts as we explore the graph. |
I think we need a general framework for somehow showing progress on operations that take a long time. I think the garbage collector falls in the same category. Just some sort of way to indicate progress to the user... |
As @Voker57 said, I think an output of "Fetched/Processed %d nodes" would be sufficient. Right now i track pin progress by watching As i mentioned in my previous comment, the easiest way to do this would probably be to pass a "Progress Counter" object through the context, and in |
Okay, I will look into it and see what I can do. |
It currently just prints nothing until its done, this can lead people (myself included) into thinking that its frozen.
The text was updated successfully, but these errors were encountered: