-
Notifications
You must be signed in to change notification settings - Fork 206
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
porter archive
fails on windows
#2917
Comments
I have a windows laptop, so could possibly help debug this one if required? |
Originally referenced branch seems to have been merged into main. Could the problem be a race condition with a virus scanner having the file open? |
I believe the issue is a race condition in go-container registry. I reported it here google/go-containerregistry#1794 and made a prototype PR google/go-containerregistry#1802. I don't have time to work on this, so feel free to pick this up |
Ah perfect, that lines up with what I was seeing when attempting to debug. @jarnfast you got here first, did you want this one? |
@dgannon991 no, I don't feel brave enough to venture into fixing go-containerregistry 😨 😉 (or at least lacking the time to do so) I initially thought it would be an easy fix as I'm archiving bundles on windows all the time without any issues - apparently I don't have many empty layers 😸 |
No worries, just wanted to make sure I wasn't stepping on your toes :) I've raised an issue and then put in this PR which does successfully address the issue. Both are almost entirely copy/pasted from the issue and PR @ludfjig first submitted, so now I'll just jump through google's hoop and hopefully we'll get somewhere :) |
@dgannon991 Just noticed that the PR in go-containerregistry was merged, thanks for getting it through. Hopefully the next verison of go-containerregistry it will be release soon, so this bug can be fixed. |
@kichristensen - yes, Sarah pulled some strings and got it through. Sadly their release cycle isn't too frequent, but hopefully there will be one soon and we can move towards it :) |
Describe the bug
porter archive
fails intermittently on windows. This is due to a race condition in go-containerregistry.To Reproduce
Run
porter archive name.tgz -r ghcr.io/getporter/examples/whalegap:v0.2.0
on windows (on my branch, otherwise you'll get an error that has been fixed since, but not yet merged).You'll notice that about 50% of the time, you'll get an error such as this one
With the example bundle, the offending file is always the one starting with "a3....".
The error comes from an os.Rename which fails with ERROR_ACCESS_DENIED. On windows, you can only rename a file that is not opened by any other process. I have used handle.exe to confirm that the file handle isn't open by another process (I think).
Expected behavior
The command should work 100% of the time.
Version
My windows branch https://github.com/ludfjig/porter/tree/win_integrationtest
The text was updated successfully, but these errors were encountered: