Skip to content

Explorer panic when sending status graphql request #2950

@dkijania

Description

@dkijania

Describe the bug
During test non_functional::voting::tally_vote_load_test we are retrieving current block date from explorer. After newest changed there is a panic during request handling in explorer.
Request:

query Status{ 
    status{
        latestBlock {  
            id,  
            chainLength,  
            date {  
                epoch {  
                    id  
                },
                slot  
            },    
            treasury {
                rewards,
                treasury
            } 
        },
        feeSettings {
            constant,
            coefficient,
            certificate,
            certificatePoolRegistration,
            certificateStakeDelegation,
            certificateOwnerStakeDelegation,
            certificateVotePlan,
            certificateVoteCast
        }
    }
}

Result:

"query Status{ \n    status{\n        latestBlock {  \n            id,  \n            chainLength,  \n            date {  \n                epoch {  \n                    id  \n                },\n                slot  \n            },    \n            treasury {\n                rewards,\n                treasury\n            } \n        },\n        feeSettings {\n            constant,\n            coefficient,\n            certificate,\n            certificatePoolRegistration,\n            certificateStakeDelegation,\n            certificateOwnerStakeDelegation,\n            certificateVotePlan,\n            certificateVoteCast\n        }\n    }\n}", against: http://127.0.0.1:10739/explorer/graphql
thread 'tokio-runtime-worker' panicked at 'the longest chain to be indexed', jormungandr/src/explorer/mod.rs:462:33
stack backtrace:
   0:     0x55655f5cc5b0 - std::backtrace_rs::backtrace::libunwind::trace::h04d12fdcddff82aa
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/../../backtrace/src/backtrace/libunwind.rs:100:5
   1:     0x55655f5cc5b0 - std::backtrace_rs::backtrace::trace_unsynchronized::h1459b974b6fbe5e1
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
   2:     0x55655f5cc5b0 - std::sys_common::backtrace::_print_fmt::h9b8396a669123d95
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/sys_common/backtrace.rs:67:5
   3:     0x55655f5cc5b0 - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::he009dcaaa75eed60
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/sys_common/backtrace.rs:46:22
   4:     0x55655f5f1c5c - core::fmt::write::h77b4746b0dea1dd3
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/fmt/mod.rs:1078:17
   5:     0x55655f5c4602 - std::io::Write::write_fmt::heb7e50902e98831c
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/io/mod.rs:1518:15
   6:     0x55655f5cef85 - std::sys_common::backtrace::_print::h2d880c9e69a21be9
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/sys_common/backtrace.rs:49:5
   7:     0x55655f5cef85 - std::sys_common::backtrace::print::h5f02b1bb49f36879
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/sys_common/backtrace.rs:36:9
   8:     0x55655f5cef85 - std::panicking::default_hook::{{closure}}::h658e288a7a809b29
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panicking.rs:208:50
   9:     0x55655f5cec28 - std::panicking::default_hook::hb52d73f0da9a4bb8
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panicking.rs:227:9
  10:     0x55655f5cf721 - std::panicking::rust_panic_with_hook::hfe7e1c684e3e6462
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panicking.rs:593:17
  11:     0x55655f5cf267 - std::panicking::begin_panic_handler::{{closure}}::h42939e004b32765c
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panicking.rs:499:13
  12:     0x55655f5cca6c - std::sys_common::backtrace::__rust_end_short_backtrace::h9d2070f7bf9fd56c
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/sys_common/backtrace.rs:141:18
  13:     0x55655f5cf1c9 - rust_begin_unwind
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panicking.rs:495:5
  14:     0x55655f5ef101 - core::panicking::panic_fmt::ha0bb065d9a260792
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/panicking.rs:92:14
  15:     0x55655f5eee93 - core::option::expect_failed::h4c033402fb75f2bf
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/option.rs:1260:5
  16:     0x55655d3bcfaf - core::option::Option<T>::expect::h958980b1a3e8def2
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/option.rs:349:21
  17:     0x55655da73d44 - jormungandr::explorer::ExplorerDB::with_latest_state::{{closure}}::h66fa858a57e637e7
                               at /non_functional_tests/src/jormungandr/src/explorer/mod.rs:462:21
  18:     0x55655d506922 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h6473cf6f69a6849e
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  19:     0x55655da6f786 - jormungandr::explorer::ExplorerDB::get_block::{{closure}}::hc1c9c6bb0da09425
                               at /non_functional_tests/src/jormungandr/src/explorer/mod.rs:325:9
  20:     0x55655d53e1d2 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::hff5bbcb06212c1d4
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  21:     0x55655d3edabf - jormungandr::explorer::graphql::latest_block::{{closure}}::{{closure}}::ha1c767888adca25d
                               at /non_functional_tests/src/jormungandr/src/explorer/graphql/mod.rs:1447:9
  22:     0x55655d528772 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::hc59019fd7d00f514
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  23:     0x55655d3ede71 - jormungandr::explorer::graphql::latest_block::{{closure}}::h4bc5546e9d51a61c
                               at /non_functional_tests/src/jormungandr/src/explorer/graphql/mod.rs:1445:5
  24:     0x55655d521d52 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::hb435934868bfd175
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  25:     0x55655d4100d8 - <jormungandr::explorer::graphql::Status as juniper::types::async_await::GraphQLValueAsync<__S>>::resolve_field_async::{{closure}}::{{closure}}::he862cafe67a7c2d6
                               at /non_functional_tests/src/jormungandr/src/explorer/graphql/mod.rs:698:9
  26:     0x55655d4e7252 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h0cf07b51811e8c5c
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  27:     0x55655d4103e9 - <jormungandr::explorer::graphql::Status as juniper::types::async_await::GraphQLValueAsync<__S>>::resolve_field_async::{{closure}}::h793b959344713d1e
                               at /non_functional_tests/src/jormungandr/src/explorer/graphql/mod.rs:688:1
  28:     0x55655d513b52 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h8b0ed19e78d37581
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  29:     0x55655cf6bf6e - <core::pin::Pin<P> as core::future::future::Future>::poll::h05f40d3fc14630aa
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/future.rs:119:9
  30:     0x55655dfe6e5d - juniper::types::async_await::resolve_selection_set_into_async_recursive::{{closure}}::{{closure}}::hf7aefd271eea15f9
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/types/async_await.rs:266:31
  31:     0x55655d51cf22 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::ha66da69ea3616fb5
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  32:     0x55655df12727 - <juniper::types::async_await::resolve_selection_set_into_async_recursive::{{closure}}::AsyncValueFuture<A,B,C,D> as core::future::future::Future>::poll::h32eb07fb4e87c8f7
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/types/async_await.rs:190:14
  33:     0x55655d660b7c - <futures_util::stream::futures_ordered::OrderWrapper<T> as core::future::future::Future>::poll::h9c1d808e64602af9
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/futures_ordered.rs:55:9
  34:     0x55655d89e069 - <futures_util::stream::futures_unordered::FuturesUnordered<Fut> as futures_core::stream::Stream>::poll_next::h165d45ab08c1fcc8
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/futures_unordered/mod.rs:542:17
  35:     0x55655d920aeb - futures_util::stream::stream::StreamExt::poll_next_unpin::he1f76b02e321bb83
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/stream/mod.rs:1407:9
  36:     0x55655d66757f - <futures_util::stream::futures_ordered::FuturesOrdered<Fut> as futures_core::stream::Stream>::poll_next::h26fc4235c5f85cf1
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/futures_ordered.rs:172:26
  37:     0x55655d68420b - futures_util::stream::stream::StreamExt::poll_next_unpin::h122f11703232ee95
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/stream/mod.rs:1407:9
  38:     0x55655d27e239 - <futures_util::stream::stream::next::Next<St> as core::future::future::Future>::poll::h7696db7686968abb
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/stream/next.rs:35:9
  39:     0x55655df4f268 - juniper::types::async_await::resolve_selection_set_into_async_recursive::{{closure}}::h4cb6811ec8a42cb8
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/types/async_await.rs:367:28
  40:     0x55655d53dbec - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::hfed42ec349affe01
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  41:     0x55655cf6d5ee - <core::pin::Pin<P> as core::future::future::Future>::poll::h964cdb3abb57c45d
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/future.rs:119:9
  42:     0x55655df19c91 - juniper::types::async_await::GraphQLValueAsync::resolve_async::{{closure}}::h77888c5e1efda90c
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/types/async_await.rs:104:20
  43:     0x55655d517982 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h96ae73e1e99c6db4
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  44:     0x55655cf6bf6e - <core::pin::Pin<P> as core::future::future::Future>::poll::h05f40d3fc14630aa
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/future.rs:119:9
  45:     0x55655d5fd091 - juniper::executor::Executor<CtxT,S>::resolve_async::{{closure}}::hd8757266af84327c
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/executor/mod.rs:468:9
  46:     0x55655d5252b2 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::hbe27019e5288cb39
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  47:     0x55655d60d799 - juniper::executor::Executor<CtxT,S>::resolve_with_ctx_async::{{closure}}::h4ebab499227bffd5
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/executor/mod.rs:486:9
  48:     0x55655d4f3372 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h2ef55750d44fd1e5
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  49:     0x55655d438cec - <jormungandr::explorer::graphql::Query as juniper::types::async_await::GraphQLValueAsync<__S>>::resolve_field_async::{{closure}}::hba66339f99c678b2
                               at /non_functional_tests/src/jormungandr/src/explorer/graphql/mod.rs:1226:1
  50:     0x55655d4e5d92 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h09670aba83a483f9
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  51:     0x55655cf6bf6e - <core::pin::Pin<P> as core::future::future::Future>::poll::h05f40d3fc14630aa
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/future.rs:119:9
  52:     0x55655dfcaead - juniper::types::async_await::resolve_selection_set_into_async_recursive::{{closure}}::{{closure}}::h7c3561c7c83cd102
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/types/async_await.rs:266:31
  53:     0x55655d502bd2 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h5ad9cd3c39cfe2c4
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  54:     0x55655df12a27 - <juniper::types::async_await::resolve_selection_set_into_async_recursive::{{closure}}::AsyncValueFuture<A,B,C,D> as core::future::future::Future>::poll::h355331057713e36e
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/types/async_await.rs:190:14
  55:     0x55655d65fb6c - <futures_util::stream::futures_ordered::OrderWrapper<T> as core::future::future::Future>::poll::h566741fc24a23801
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/futures_ordered.rs:55:9
  56:     0x55655d8bb089 - <futures_util::stream::futures_unordered::FuturesUnordered<Fut> as futures_core::stream::Stream>::poll_next::haad83a96b9e3198d
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/futures_unordered/mod.rs:542:17
  57:     0x55655d91f88b - futures_util::stream::stream::StreamExt::poll_next_unpin::h0f375de070dd0af2
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/stream/mod.rs:1407:9
  58:     0x55655d674fdf - <futures_util::stream::futures_ordered::FuturesOrdered<Fut> as futures_core::stream::Stream>::poll_next::hcbf3a04f64db5ef1
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/futures_ordered.rs:172:26
  59:     0x55655d684c8b - futures_util::stream::stream::StreamExt::poll_next_unpin::h824c2daef00f01d4
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/stream/mod.rs:1407:9
  60:     0x55655d27d1b9 - <futures_util::stream::stream::next::Next<St> as core::future::future::Future>::poll::h07bdbdc5ffdbc2e3
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/stream/stream/next.rs:35:9
  61:     0x55655df79f68 - juniper::types::async_await::resolve_selection_set_into_async_recursive::{{closure}}::h9dc60d285477488c
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/types/async_await.rs:367:28
  62:     0x55655d509c4c - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h6f82ef3e2f51d30d
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  63:     0x55655cf6d5ee - <core::pin::Pin<P> as core::future::future::Future>::poll::h964cdb3abb57c45d
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/future.rs:119:9
  64:     0x55655df1aaf1 - juniper::types::async_await::GraphQLValueAsync::resolve_async::{{closure}}::h92b9d43b9b20b9da
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/types/async_await.rs:104:20
  65:     0x55655d526462 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::hc15dd8c18e1fae31
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  66:     0x55655cf6bf6e - <core::pin::Pin<P> as core::future::future::Future>::poll::h05f40d3fc14630aa
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/future.rs:119:9
  67:     0x55655d602341 - juniper::executor::Executor<CtxT,S>::resolve_async::{{closure}}::hff40fa4a6641f2ee
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/executor/mod.rs:468:9
  68:     0x55655d4f4072 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h31050053c9c30d88
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  69:     0x55655d622fd3 - juniper::executor::Executor<CtxT,S>::resolve_into_value_async::{{closure}}::h7113aaeaff66ca9d
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/executor/mod.rs:512:9
  70:     0x55655d50629c - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h63b994b8471d1629
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  71:     0x55655d62b56a - juniper::executor::execute_validated_query_async::{{closure}}::h0e3acee35261cb99
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/executor/mod.rs:963:17
  72:     0x55655d4fada2 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h46686967905e62fe
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  73:     0x55655cd74fbc - juniper::execute::{{closure}}::ha73daf26ff1d44f4
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/lib.rs:296:5
  74:     0x55655d4f9f02 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h4438357fdd3e90ca
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  75:     0x55655d0cb389 - juniper::http::GraphQLRequest<S>::execute::{{closure}}::hb71df67b077703cc
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/http/mod.rs:119:19
  76:     0x55655d4fd1d2 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h4bc355fc1e7613d2
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  77:     0x55655d0cbcf0 - juniper::http::GraphQLBatchRequest<S>::execute::{{closure}}::h7e38d864dd3ca6ad
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper-0.15.1/src/http/mod.rs:303:28
  78:     0x55655d530932 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::hdbc12571a072e503
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  79:     0x55655cd86c0c - juniper_warp::make_graphql_filter::{{closure}}::{{closure}}::he290712ba4bfd693
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/juniper_warp-0.6.0/src/lib.rs:129:24
  80:     0x55655d4eb222 - <core::future::from_generator::GenFuture<T> as core::future::future::Future>::poll::h17a7896c75dee106
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/mod.rs:80:19
  81:     0x55655d4e201a - <F as futures_core::future::TryFuture>::try_poll::hc17a3d7a8d6f0c9c
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
  82:     0x55655d2cf737 - <warp::filter::and_then::AndThenFuture<T,F> as core::future::future::Future>::poll::h334f0e8703af647b
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/and_then.rs:82:44
  83:     0x55655d2c82ea - <F as futures_core::future::TryFuture>::try_poll::hc73133a500476b74
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
  84:     0x55655cfc6b3c - <warp::filter::or::EitherFuture<T,U> as core::future::future::Future>::poll::h07e479a7bfa92221
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/or.rs:87:44
  85:     0x55655cfc34fa - <F as futures_core::future::TryFuture>::try_poll::h4b78210bb5e61b8d
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
  86:     0x55655d0ccc85 - <warp::filter::unify::UnifyFuture<F> as core::future::future::Future>::poll::ha0fb05d3cd5d793c
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/unify.rs:46:36
  87:     0x55655d0c8efa - <F as futures_core::future::TryFuture>::try_poll::hf9e61c59d7fe5ded
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
  88:     0x55655cfdb59d - <warp::filter::or::EitherFuture<T,U> as core::future::future::Future>::poll::hf0d76f84269b96a5
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/or.rs:77:65
  89:     0x55655cfc37fa - <F as futures_core::future::TryFuture>::try_poll::hf994e32d789c9fdf
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
  90:     0x55655d0ccf65 - <warp::filter::unify::UnifyFuture<F> as core::future::future::Future>::poll::ha6974fcbcc3981b9
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/unify.rs:46:36
  91:     0x55655d0c8eca - <F as futures_core::future::TryFuture>::try_poll::h96de51d70f71fdd5
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
  92:     0x55655dba7c59 - <warp::filter::map_err::MapErrFuture<T,F> as core::future::future::Future>::poll::hb8de1a1ef41e83f2
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/map_err.rs:52:9
  93:     0x55655dba358a - <F as futures_core::future::TryFuture>::try_poll::h05076a9da8f56272
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
  94:     0x55655d2e9151 - <futures_util::future::try_future::into_future::IntoFuture<Fut> as core::future::future::Future>::poll::h0ab05bc2dd0af0d9
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/future/try_future/into_future.rs:35:9
  95:     0x55655cf6dafe - <core::pin::Pin<P> as core::future::future::Future>::poll::hc0e5876bf3a0f986
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/future.rs:119:9
  96:     0x55655d83a23f - <warp::filter::and::AndFuture<T,U> as core::future::future::Future>::poll::h0a5c28c5743bbf4f
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/and.rs:71:44
  97:     0x55655d82ccca - <F as futures_core::future::TryFuture>::try_poll::h947c91c501418e04
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
  98:     0x55655dba6e99 - <warp::filter::map_err::MapErrFuture<T,F> as core::future::future::Future>::poll::h5d2119364bd46227
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/map_err.rs:52:9
  99:     0x55655dba3dda - <F as futures_core::future::TryFuture>::try_poll::hed684a67d1b864dd
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
 100:     0x55655d2e99e1 - <futures_util::future::try_future::into_future::IntoFuture<Fut> as core::future::future::Future>::poll::h5baa9cd26109bf11
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/future/try_future/into_future.rs:35:9
 101:     0x55655cf6dafe - <core::pin::Pin<P> as core::future::future::Future>::poll::hc0e5876bf3a0f986
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/future.rs:119:9
 102:     0x55655cf5a0fa - <F as futures_core::future::TryFuture>::try_poll::h65be37b23958568f
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
 103:     0x55655cfd2ce7 - <warp::filter::or::EitherFuture<T,U> as core::future::future::Future>::poll::h8e3511f538982c03
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/or.rs:77:65
 104:     0x55655d8607c5 - <warp::filter::and::AndFuture<T,U> as core::future::future::Future>::poll::h7640c3d91c549014
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/and.rs:71:44
 105:     0x55655d82cc9a - <F as futures_core::future::TryFuture>::try_poll::h928d8477c20364df
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
 106:     0x55655d474a3f - <warp::filter::recover::RecoverFuture<T,F> as core::future::future::Future>::poll::h34a2a6503c7b30c1
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/recover.rs:91:65
 107:     0x55655d4744ea - <F as futures_core::future::TryFuture>::try_poll::h046018675b287f23
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
 108:     0x55655dba6519 - <warp::filter::map_err::MapErrFuture<T,F> as core::future::future::Future>::poll::h0ea3f6d6f1062750
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/map_err.rs:52:9
 109:     0x55655dba3cba - <F as futures_core::future::TryFuture>::try_poll::hdbbc722f30538c12
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
 110:     0x55655d2e8f21 - <futures_util::future::try_future::into_future::IntoFuture<Fut> as core::future::future::Future>::poll::h00ae9d470ec6692c
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.9/src/future/try_future/into_future.rs:35:9
 111:     0x55655cf6ddae - <core::pin::Pin<P> as core::future::future::Future>::poll::hd99fc4893f53a408
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/future/future.rs:119:9
 112:     0x55655cf5a00a - <F as futures_core::future::TryFuture>::try_poll::h1a42d37b06478de7
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
 113:     0x55655cfcfd71 - <warp::filter::or::EitherFuture<T,U> as core::future::future::Future>::poll::h75b43613aa60120b
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/or.rs:87:44
 114:     0x55655cfc376a - <F as futures_core::future::TryFuture>::try_poll::he2c5f216ed9e981e
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.9/src/future.rs:83:9
 115:     0x55655ce5608d - <warp::filter::service::FilteredFuture<F> as core::future::future::Future>::poll::{{closure}}::hdeb805e0abaea4b3
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/service.rs:128:41
 116:     0x55655db14dbb - scoped_tls::ScopedKey<T>::set::hc06a2119e0674990
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/scoped-tls-1.0.0/src/lib.rs:137:9
 117:     0x55655dcdf77d - warp::route::set::h61af427b3b2bf2d4
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/route.rs:17:5
 118:     0x55655ce53a88 - <warp::filter::service::FilteredFuture<F> as core::future::future::Future>::poll::h774764dcaa97bb67
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/warp-0.2.5/src/filter/service.rs:128:15
 119:     0x55655dc25f97 - <hyper::proto::h1::dispatch::Server<S,hyper::body::body::Body> as hyper::proto::h1::dispatch::Dispatch>::poll_msg::h826cb0524b764f13
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.9/src/proto/h1/dispatch.rs:476:31
 120:     0x55655dc428d6 - hyper::proto::h1::dispatch::Dispatcher<D,Bs,I,T>::poll_write::h173caab97b887e6c
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.9/src/proto/h1/dispatch.rs:284:43
 121:     0x55655dc705bb - hyper::proto::h1::dispatch::Dispatcher<D,Bs,I,T>::poll_loop::hcb3c96eefc2d6978
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.9/src/proto/h1/dispatch.rs:151:21
 122:     0x55655dc38bec - hyper::proto::h1::dispatch::Dispatcher<D,Bs,I,T>::poll_inner::h2742723de5e3066b
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.9/src/proto/h1/dispatch.rs:127:16
 123:     0x55655dc31abd - hyper::proto::h1::dispatch::Dispatcher<D,Bs,I,T>::poll_catch::h1aea94a30c7acdf4
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.9/src/proto/h1/dispatch.rs:110:28
 124:     0x55655dc1ec3b - <hyper::proto::h1::dispatch::Dispatcher<D,Bs,I,T> as core::future::future::Future>::poll::hb0e3ad07c1fe4b55
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.9/src/proto/h1/dispatch.rs:411:9
 125:     0x55655d68d759 - <hyper::server::conn::ProtoServer<T,B,S,E> as core::future::future::Future>::poll::he6416c4b92a44046
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.9/src/server/conn.rs:884:39
 126:     0x55655cd07932 - <hyper::server::conn::upgrades::UpgradeableConnection<I,S,E> as core::future::future::Future>::poll::h0ddd780b00c12afb
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.9/src/server/conn.rs:1063:30
 127:     0x55655ce90d2e - <hyper::common::drain::Watching<F,FN> as core::future::future::Future>::poll::hda073f191b9aed88
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.9/src/common/drain.rs:110:36
 128:     0x55655ce9e9f0 - <hyper::server::conn::spawn_all::NewSvcTask<I,N,S,E,W> as core::future::future::Future>::poll::hee7b4d5e0e9ae0ae
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.9/src/server/conn.rs:1001:36
 129:     0x55655ddbfab4 - tokio::runtime::task::core::Core<T,S>::poll::{{closure}}::he013e5fb67c2ab80
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/core.rs:173:17
 130:     0x55655d026187 - tokio::loom::std::unsafe_cell::UnsafeCell<T>::with_mut::h76d9baf9599ba582
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/loom/std/unsafe_cell.rs:14:9
 131:     0x55655ddb5133 - tokio::runtime::task::core::Core<T,S>::poll::h645ce5f39b715201
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/core.rs:158:13
 132:     0x55655ded394b - tokio::runtime::task::harness::Harness<T,S>::poll::{{closure}}::h9d1d98a1f5e723bf
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/harness.rs:107:27
 133:     0x55655d6ffed0 - core::ops::function::FnOnce::call_once::h92b27ae9fbb33ee9
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/ops/function.rs:227:5
 134:     0x55655d247d4a - <std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h7185f4ec20d6c2e9
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panic.rs:322:9
 135:     0x55655dc0504d - std::panicking::try::do_call::he341646e044929f5
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panicking.rs:381:40
 136:     0x55655dc0d61d - __rust_try
 137:     0x55655dbf5b65 - std::panicking::try::h56421b2174c697fb
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panicking.rs:345:19
 138:     0x55655d24a24a - std::panic::catch_unwind::h6b0690281ab76d12
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panic.rs:396:14
 139:     0x55655dec4702 - tokio::runtime::task::harness::Harness<T,S>::poll::hcb28d45dbcecee29
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/harness.rs:89:19
 140:     0x55655dde6bb0 - tokio::runtime::task::raw::poll::h0b0ba570f989b634
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/raw.rs:104:5
 141:     0x55655ee25c7f - tokio::runtime::task::raw::RawTask::poll::hf496f2bb8df2bcac
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/raw.rs:66:18
 142:     0x55655ee71c91 - tokio::runtime::task::Notified<S>::run::h6a1b5ae7c21f75f5
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/mod.rs:169:9
 143:     0x55655ee97722 - tokio::runtime::thread_pool::worker::Context::run_task::{{closure}}::h3c4e660e33f6b170
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/thread_pool/worker.rs:349:13
 144:     0x55655ee71916 - tokio::coop::with_budget::{{closure}}::heac6e3adc1aa531c
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/coop.rs:127:9
 145:     0x55655ee91231 - std::thread::local::LocalKey<T>::try_with::h47686fae74aa89df
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/thread/local.rs:272:16
 146:     0x55655ee9019e - std::thread::local::LocalKey<T>::with::h54abb559497e8463
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/thread/local.rs:248:9
 147:     0x55655ee97560 - tokio::coop::with_budget::h6e324dbca4284628
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/coop.rs:120:5
 148:     0x55655ee97560 - tokio::coop::budget::h8c22833cdb2471df
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/coop.rs:96:5
 149:     0x55655ee97560 - tokio::runtime::thread_pool::worker::Context::run_task::h043834a98e852abb
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/thread_pool/worker.rs:348:9
 150:     0x55655ee96f95 - tokio::runtime::thread_pool::worker::Context::run::h0eb38b11d44e0385
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/thread_pool/worker.rs:320:24
 151:     0x55655ee96db3 - tokio::runtime::thread_pool::worker::run::{{closure}}::h1240ef1b1c4c88dc
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/thread_pool/worker.rs:305:17
 152:     0x55655ee763fa - tokio::macros::scoped_tls::ScopedKey<T>::set::h45e795546c4923a7
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/macros/scoped_tls.rs:63:9
 153:     0x55655ee96ca3 - tokio::runtime::thread_pool::worker::run::h95474cab6b130a6f
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/thread_pool/worker.rs:302:5
 154:     0x55655ee96b4b - tokio::runtime::thread_pool::worker::Launch::launch::{{closure}}::h4937b1c828743e15
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/thread_pool/worker.rs:281:45
 155:     0x55655ee25f60 - <tokio::runtime::blocking::task::BlockingTask<T> as core::future::future::Future>::poll::hf62657df8ccff315
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/blocking/task.rs:41:21
 156:     0x55655ee39be9 - tokio::runtime::task::core::Core<T,S>::poll::{{closure}}::h7432cd794a15521b
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/core.rs:173:17
 157:     0x55655ee406db - tokio::loom::std::unsafe_cell::UnsafeCell<T>::with_mut::h0fc27d07a160ffba
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/loom/std/unsafe_cell.rs:14:9
 158:     0x55655ee39a2e - tokio::runtime::task::core::Core<T,S>::poll::h4484a42602ddcff5
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/core.rs:158:13
 159:     0x55655ee86954 - tokio::runtime::task::harness::Harness<T,S>::poll::{{closure}}::h9ea8a3f08a38ac5c
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/harness.rs:107:27
 160:     0x55655ee65700 - core::ops::function::FnOnce::call_once::h619a8dc3f3c3d518
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/ops/function.rs:227:5
 161:     0x55655ee4984b - <std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h3c2b369b01f3509f
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panic.rs:322:9
 162:     0x55655ee87ddf - std::panicking::try::do_call::h0784febbe6b8c8b6
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panicking.rs:381:40
 163:     0x55655ee8eedd - __rust_try
 164:     0x55655ee87c92 - std::panicking::try::he47c18c699204afb
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panicking.rs:345:19
 165:     0x55655ee49d5b - std::panic::catch_unwind::hd6443796b7c97c78
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panic.rs:396:14
 166:     0x55655ee86500 - tokio::runtime::task::harness::Harness<T,S>::poll::h1bc22b17156b0446
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/harness.rs:89:19
 167:     0x55655ee25dd2 - tokio::runtime::task::raw::poll::h8fa531f364c6df6b
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/raw.rs:104:5
 168:     0x55655ee25c7f - tokio::runtime::task::raw::RawTask::poll::hf496f2bb8df2bcac
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/raw.rs:66:18
 169:     0x55655ee71d01 - tokio::runtime::task::Notified<S>::run::h88edc99e6f557b1b
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/task/mod.rs:169:9
 170:     0x55655ee8d113 - tokio::runtime::blocking::pool::Inner::run::h3326b0a611e5babf
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/blocking/pool.rs:250:17
 171:     0x55655ee8ce7e - tokio::runtime::blocking::pool::Spawner::spawn_thread::{{closure}}::{{closure}}::h30e2d1e49f1c6ec5
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/blocking/pool.rs:230:21
 172:     0x55655ee41cb0 - tokio::runtime::context::enter::hae9494486f10e966
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/context.rs:72:5
 173:     0x55655ee2f910 - tokio::runtime::handle::Handle::enter::h7e81764c3e1960b1
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/handle.rs:76:9
 174:     0x55655ee8cf12 - tokio::runtime::blocking::pool::Spawner::spawn_thread::{{closure}}::h975e95e16e424c98
                               at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.24/src/runtime/blocking/pool.rs:229:17
 175:     0x55655ee2a1d0 - std::sys_common::backtrace::__rust_begin_short_backtrace::h08f296ab73f06ebd
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/sys_common/backtrace.rs:125:18
 176:     0x55655ee2b183 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::hbbe827a1a4aaebe8
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/thread/mod.rs:474:17
 177:     0x55655ee49823 - <std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h35a632e890ac67ef
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panic.rs:322:9
 178:     0x55655ee87eb2 - std::panicking::try::do_call::h74509c3685871d84
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panicking.rs:381:40
 179:     0x55655ee8eedd - __rust_try
 180:     0x55655ee87b84 - std::panicking::try::hbe1eb7a5081567c1
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panicking.rs:345:19
 181:     0x55655ee49d23 - std::panic::catch_unwind::h9683398e2677a774
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/panic.rs:396:14
 182:     0x55655ee2af48 - std::thread::Builder::spawn_unchecked::{{closure}}::hac09b4a952db97d3
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/thread/mod.rs:473:30
 183:     0x55655ee655cf - core::ops::function::FnOnce::call_once{{vtable.shim}}::he61d054fc31fe9bc
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/core/src/ops/function.rs:227:5
 184:     0x55655f5d403a - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h09ff301006f1aeca
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/alloc/src/boxed.rs:1307:9
 185:     0x55655f5d403a - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::he79488c8f00b5f31
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/alloc/src/boxed.rs:1307:9
 186:     0x55655f5d403a - std::sys::unix::thread::Thread::new::thread_start::h587efff279c68ba7
                               at /rustc/e1884a8e3c3e813aada8254edfa120e85bf5ffca/library/std/src/sys/unix/thread.rs:71:17
 187:     0x7fc9d6bd36db - start_thread
 188:     0x7fc9d635a71f - __clone
 189:                0x0 - <unknown>

Mandatory Information

  1. jcli --full-version newest master;
  2. jormungandr --full-version newest master;

To Reproduce
Steps to reproduce the behavior:

  1. cd testing\jormungandr-integration-tests
  2. cargo test --all-features non_functional::voting::tally_vote_load_test -- --nocapture > log.log

Expected behavior
No panic

Additional context
Test might not reproduce issue in 100%

Metadata

Metadata

Assignees

No one assigned

    Labels

    A-explorerArea: Explorer API and backendA-testsArea: TestsautomatedbugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions