Skip to content
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

Ignore cargo messages like Blocking waiting for ... #500

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dimonomid
Copy link

Whenever Cargo tries to build a project while there is another build in progress, Cargo will wait for the other build to finish, and print messages like this:

Blocking waiting for file lock on package cache
Blocking waiting for file lock on package cache
Blocking waiting for file lock on build directory

Those messages were not ignored, and were therefore included in the quickfix, making it look like there were some issues even if the build succeeded.

This commit configures &errorformat to ignore those messages and avoid including them in the quickfix.

Closes #499 .

Whenever Cargo tries to build a project while there is another build in
progress, Cargo will wait for the other build to finish, and print
messages like this:

```
Blocking waiting for file lock on package cache
Blocking waiting for file lock on package cache
Blocking waiting for file lock on build directory
```

Those messages were not ignored, and were therefore included in the
quickfix, making it look like there were some issues even if the build
succeeded.

This commit configures `&errorformat` to ignore those messages and avoid
including them in the quickfix.

Closes rust-lang#499 .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

"Blocking waiting for file lock ..." cargo messages are not ignored
1 participant