-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
do not panic on failure to acquire jobserver token #109694
Conversation
(rustbot has picked a reviewer for you, use r? to override) |
r? compiler |
r? @Zoxc |
Failed to set assignee to
|
r? @bjorn3 |
What @belovdv is trying to say is that it's a build environment configuration issue, not an internal compiler error. |
This change seems fine, but the parallel compiler does also rely a bit on this operation to succeed. An incorrect |
6a4c830
to
e1fdb21
Compare
e1fdb21
to
be6a09f
Compare
r=me when CI passes |
@bors r+ |
…iaskrgr Rollup of 6 pull requests Successful merges: - rust-lang#109149 (Improve error message when writer is forgotten in write and writeln macro) - rust-lang#109367 (Streamline fast rejection) - rust-lang#109548 (AnnotationColumn struct to fix hard tab column numbers in errors) - rust-lang#109694 (do not panic on failure to acquire jobserver token) - rust-lang#109705 (new solver: check for intercrate mode when accessing the cache) - rust-lang#109708 (Specialization involving RPITITs is broken so ignore the diagnostic differences) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Purpose: remove
panic
.Rust fails to acquire token if an error in build system occurs - environment variable contains incorrect
jobserver-auth
. It isn't ice so compiler shouldn't panic on such error.Related issue: #46981