-
Notifications
You must be signed in to change notification settings - Fork 313
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
No progress indicated for openstack image uploads #154
Comments
It would seem the problem is that the fd is seeked to 0, and then back constantly
|
After some debugging it seems that the real problem is that the same file is opened twice:
And it's trying to measure progress from 3 and 4, and ends up looking only on 3, which isn't progressing. When I manually changed it to always look at 4, it shows progress. |
This is a very specific situation, but we could imagine a very generic fix ("if the file is opened multiple times, look for the biggest seek"). |
I think that fd 3 actually was always 0. So you could maybe just ignore it as it's not really progressing anywhere? |
Version 3e27660
When trying to monitor openstack image upload, only 0/s is shown.
The text was updated successfully, but these errors were encountered: