We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm sporadically getting some panics firing. I'm seeing this on any OS.
Error: 1 [ERROR] thread 'main' panicked at 'already mutably borrowed: BorrowError': src/plugin/host.rs:359 Error: 1 [ERROR] thread 'main' panicked at 'already borrowed: BorrowMutError': src/plugin/host.rs:309 Error: 1 [ERROR] thread 'main' panicked at 'panic in a destructor during cleanup': core/src/panicking.rs:229
Looking at the first error message, it's related to code for checking if there were main thread callbacks requested:
clap-validator/src/plugin/host.rs
Line 359 in 2f71690
A recent change in my plugin is more frequent use of request_callback().
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm sporadically getting some panics firing. I'm seeing this on any OS.
Error: 1 [ERROR] thread 'main' panicked at 'already mutably borrowed: BorrowError': src/plugin/host.rs:359
Error: 1 [ERROR] thread 'main' panicked at 'already borrowed: BorrowMutError': src/plugin/host.rs:309
Error: 1 [ERROR] thread 'main' panicked at 'panic in a destructor during cleanup': core/src/panicking.rs:229
Looking at the first error message, it's related to code for checking if there were main thread callbacks requested:
clap-validator/src/plugin/host.rs
Line 359 in 2f71690
A recent change in my plugin is more frequent use of request_callback().
The text was updated successfully, but these errors were encountered: