mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 05:38:46 +00:00
Fix long loop timeout
This commit is contained in:
parent
abc5828c05
commit
7cc0a86528
1 changed files with 1 additions and 1 deletions
|
@ -434,7 +434,7 @@ fn loop_turn(
|
|||
}
|
||||
|
||||
let loop_duration = loop_start.elapsed();
|
||||
if loop_duration > Duration::from_millis(10) {
|
||||
if loop_duration > Duration::from_millis(100) {
|
||||
log::error!("overly long loop turn: {:?}", loop_duration);
|
||||
if env::var("RA_PROFILE").is_ok() {
|
||||
show_message(
|
||||
|
|
Loading…
Reference in a new issue