-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
dep ensure
never comes back
#5987
Comments
`dep ensure` never came back over 20mins on test-infra repo. This fixes the issue by operating `dep ensure -update`. fixes kubernetes#5987
`dep ensure` never came back over 20mins on test-infra repo. This fixes the issue by operating `dep ensure -update`. fixes kubernetes#5987
`dep ensure` never came back over 20mins on test-infra repo. This fixes the issue by operating `dep ensure -update` and `hack/update-bazel.sh`. fixes kubernetes#5987
`dep ensure` never came back over 20mins on test-infra repo. This fixes the issue by operating `dep ensure -update` and `hack/update-bazel.sh`. fixes kubernetes#5987
Can you |
That freezes in futex() call like the following: openat(AT_FDCWD, "/home/oomichi/dev/go/src/k8s.io/test-infra/Gopkg.toml", O_RDONLY|O_CLOEXEC) = 3 |
I haven't had a moment to reproduce it, hopefully though this helps @cblecker with debugging |
Thank you for your advice, the following is my try based on your comment.
I tried the above, but $ go get -u github.com/golang/dep/cmd/dep
Does the above mean you never face this issue on your local env? |
So it looks like
We don't even need to mess around with an No, I'm not able to replicate this in my environment. I'm currently using the latest tagged version of dep (v0.3.2). |
I tried dep v0.3.2 by downloading https://github.com/golang/dep/releases/tag/v0.3.2 , but I still face the same issue:: ~/dev/go/src/k8s.io/test-infra$ dep version I guess my local env is something wrong and I am creating another env on google cloud. BTW what is a common development environment for k8s? |
humm, my try on google cloud also was failed with the same issue.
|
Now I find what is wrong on my env. To avoid the same issue, where is good place to write this kind of tip in test-infra? |
https://github.com/kubernetes/test-infra/blob/master/docs/dep.md is the right place for that. Glad to hear you were able to track it down, and thanks for updating the docs! |
dep ensure
never comes back over 20mins on test-infra repo.On the other hand,
dep ensure -update
finishes in 2 mins with huge changes.After doing
dep ensure -update
,dep ensure
comes back in 9sec.I tried this on both a virtual/physical machines and faced the same issue on both.
The text was updated successfully, but these errors were encountered: