We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e31b3aa commit 1a8d527Copy full SHA for 1a8d527
parity/run.rs
@@ -1007,8 +1007,11 @@ fn build_create_account_hint(spec: &SpecType, keys: &str) -> String {
1007
1008
fn wait_for_drop<T>(w: Weak<T>) {
1009
let sleep_duration = Duration::from_secs(1);
1010
- let warn_timeout = Duration::from_secs(60);
1011
- 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);
1012
+ // let max_timeout = Duration::from_secs(300);
1013
+ let warn_timeout = Duration::from_secs(5);
1014
+ let max_timeout = warn_timeout;
1015
1016
let instant = Instant::now();
1017
let mut warned = false;
0 commit comments