Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions parity/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1007,8 +1007,11 @@ fn build_create_account_hint(spec: &SpecType, keys: &str) -> String {

fn wait_for_drop<T>(w: Weak<T>) {
let sleep_duration = Duration::from_secs(1);
let warn_timeout = Duration::from_secs(60);
let max_timeout = Duration::from_secs(300);
// temporary workaround for https://github.com/paritytech/parity-ethereum/issues/9807
// let warn_timeout = Duration::from_secs(60);
// let max_timeout = Duration::from_secs(300);
let warn_timeout = Duration::from_secs(5);
let max_timeout = warn_timeout;

let instant = Instant::now();
let mut warned = false;
Expand Down