-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Registry tries to update on every build/test #991
Comments
Still repro on:
|
This happens on one of my projects, but not another. very similar structure. The only notable difference is that the one that keeps doing updates has github dependencies, whereas the one that does not only has a cargo registry dependency. Do non-registry dependencies trigger this? |
I hit this ever build when working on hyper. It actually impeded work I tried to do on a plane, since it couldn't connect to the registry. I tried to discover an option to force it to skip that step, but failed. |
+1 happens every time |
It turns out that the registry was being queried with git dependencies as well, so this commit alters the core registry not query sources with dependencies that did not originate from the source. Closes rust-lang#991
It turns out that the registry was being queried with git dependencies as well, so this commit alters the core registry not query sources with dependencies that did not originate from the source. Closes #991
With spotty internet the time to perform the "updating registry" task dominates the test cycle time.
Platform: OSX 10.9
cargo version:
cargo 0.0.1-pre-nightly (e1dc4bc 2014-11-25 21:59:15 +0000)
rustc version:
rustc 0.13.0-nightly (fac5a0767 2014-11-26 22:37:06 +0000)
(will update bug when rustup finishes)
cc @huonw
The text was updated successfully, but these errors were encountered: