Compiling reactive-mutiny v0.1.0 (/tmp/reactive-mutiny) warning: unused import: `std::time::Duration` --> src/ogre_std/ogre_queues/atomic_queues/non_blocking_queue.rs:17:5 | 17 | use std::time::Duration; | ^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `info` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:25:18 | 25 | use log::{trace, info}; | ^^^^ warning: unused import: `types::*` --> src/uni/mod.rs:38:9 | 38 | types::*, | ^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `std::time::Duration` --> src/ogre_std/ogre_queues/atomic_queues/non_blocking_queue.rs:17:5 | 17 | use std::time::Duration; | ^^^^^^^^^^^^^^^^^^^ warning: unused import: `OgreBlockingQueue` --> src/ogre_std/benchmarks.rs:292:33 | 292 | ogre_queues::{OgreQueue,OgreBlockingQueue} | ^^^^^^^^^^^^^^^^^ warning: unused macro definition: `impl_benchmarkable_container_for_blocking` --> src/ogre_std/benchmarks.rs:318:18 | 318 | macro_rules! impl_benchmarkable_container_for_blocking { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_macros)]` on by default warning: unused variable: `wait_factor` --> src/ogre_std/ogre_queues/atomic_queues/atomic_meta.rs:227:27 | 227 | fn relaxed_wait(wait_factor: u32) { | ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_wait_factor` | = note: `#[warn(unused_variables)]` on by default warning: variable does not need to be mutable --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:171:13 | 171 | let mut instance = Box::pin(Self { | ----^^^^^^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default warning: struct `TokioMPSC` is never constructed --> src/uni/channels/tokio_mpsc.rs:16:12 | 16 | pub struct TokioMPSC { | ^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default warning: associated function `new` is never used --> src/uni/channels/tokio_mpsc.rs:24:12 | 24 | pub fn new() -> Arc>> { | ^^^ warning: associated function `consumer_stream` is never used --> src/uni/channels/tokio_mpsc.rs:32:12 | 32 | pub fn consumer_stream(self: &Arc>>) -> Option> { | ^^^^^^^^^^^^^^^ warning: associated function `send` is never used --> src/uni/channels/tokio_mpsc.rs:59:18 | 59 | pub async fn send(&self, item: ItemType) { | ^^^^ warning: associated function `try_send` is never used --> src/uni/channels/tokio_mpsc.rs:66:12 | 66 | pub fn try_send(&self, item: ItemType) -> bool { | ^^^^^^^^ warning: associated function `zero_copy_try_send` is never used --> src/uni/channels/tokio_mpsc.rs:76:15 | 76 | unsafe fn zero_copy_try_send(&self, _item_builder: impl FnOnce(&mut ItemType)) { | ^^^^^^^^^^^^^^^^^^ warning: associated function `flush` is never used --> src/uni/channels/tokio_mpsc.rs:80:18 | 80 | pub async fn flush(&self, timeout: Duration) -> u32 { | ^^^^^ warning: associated function `end_all_streams` is never used --> src/uni/channels/tokio_mpsc.rs:100:18 | 100 | pub async fn end_all_streams(&self, timeout: Duration) -> u32 { | ^^^^^^^^^^^^^^^ warning: associated function `pending_items_count` is never used --> src/uni/channels/tokio_mpsc.rs:109:12 | 109 | pub fn pending_items_count(&self) -> u32 { | ^^^^^^^^^^^^^^^^^^^ warning: associated function `consumer_stream` is never used --> src/uni/channels/atomic_mpmc_queue.rs:48:12 | 48 | pub fn consumer_stream(self: &Arc>>) -> Option> { | ^^^^^^^^^^^^^^^ warning: associated function `wake_all_streams` is never used --> src/uni/channels/atomic_mpmc_queue.rs:118:8 | 118 | fn wake_all_streams(&self) { | ^^^^^^^^^^^^^^^^ warning: associated function `new` is never used --> src/uni/channels/atomic_mpmc_queue.rs:147:12 | 147 | pub fn new() -> Arc>> { | ^^^ warning: associated function `flush` is never used --> src/uni/channels/atomic_mpmc_queue.rs:172:18 | 172 | pub async fn flush(&self, timeout: Duration) -> u32 { | ^^^^^ warning: associated function `end_all_streams` is never used --> src/uni/channels/atomic_mpmc_queue.rs:193:18 | 193 | pub async fn end_all_streams(&self, timeout: Duration) -> u32 { | ^^^^^^^^^^^^^^^ warning: associated function `pending_items_count` is never used --> src/uni/channels/atomic_mpmc_queue.rs:205:12 | 205 | pub fn pending_items_count(&self) -> u32 { | ^^^^^^^^^^^^^^^^^^^ warning: associated constant `PERCENTILES` is never used --> src/instruments.rs:50:11 | 50 | const PERCENTILES: usize = 16; | ^^^^^^^^^^^ warning: associated function `reset` is never used --> src/incremental_averages.rs:82:8 | 82 | fn reset(&self, weight: u32) { | ^^^^^ warning: associated function `split` is never used --> src/incremental_averages.rs:87:8 | 87 | fn split(&self) -> &IncrementalAveragePair32 { | ^^^^^ warning: associated function `atomic` is never used --> src/incremental_averages.rs:92:8 | 92 | fn atomic(&self) -> &AtomicU64 { | ^^^^^^ warning: type alias `ReferenceCountedAllocator` is never used --> src/ogre_std/reference_counted_buffer_allocator.rs:48:10 | 48 | pub type ReferenceCountedAllocator = ReferenceCountedNonBlockingCustomStackAllocator src/ogre_std/reference_counted_buffer_allocator.rs:51:10 | 51 | pub type ReferenceCountedBlockingAllocator = ReferenceCountedNonBlockingCustomStackAllocator src/ogre_std/benchmarks.rs:22:8 | 22 | pub fn all_in_and_out_benchmark(container: &(dyn BenchmarkableContainer + Sync), threads: usize, deadline: Duration) -> f64 { | ^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `single_in_and_out_benchmark` is never used --> src/ogre_std/benchmarks.rs:41:8 | 41 | pub fn single_in_and_out_benchmark(container: &(dyn BenchmarkableContainer + Sync), threads: usize, deadline: Duration) -> f64 { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `single_producer_multiple_consumers_benchmark` is never used --> src/ogre_std/benchmarks.rs:58:8 | 58 | pub fn single_producer_multiple_consumers_benchmark(container: &(dyn BenchmarkableContainer + Sync), threads: usize, deadline: Dur... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `multiple_producers_single_consumer_benchmark` is never used --> src/ogre_std/benchmarks.rs:100:8 | 100 | pub fn multiple_producers_single_consumer_benchmark(container: &(dyn BenchmarkableContainer + Sync), threads: usize, deadline: Dur... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `compute_operations_per_second` is never used --> src/ogre_std/benchmarks.rs:151:4 | 151 | fn compute_operations_per_second(benchmark_name: String, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `keep_looping` is never used --> src/ogre_std/benchmarks.rs:171:4 | 171 | fn keep_looping(start_time: &SystemTime, iterations: &mut u64, deadline: &Duration, loops_per_iteration: u64) -> Option { | ^^^^^^^^^^^^ warning: function `multi_threaded_iterate` is never used --> src/ogre_std/benchmarks.rs:186:8 | 186 | pub fn multi_threaded_iterate(start: usize, finish: usize, threads: usize, callback: impl Fn(u32) -> () + std::marker::Sync) { | ^^^^^^^^^^^^^^^^^^^^^^ warning: function `iterate` is never used --> src/ogre_std/benchmarks.rs:199:4 | 199 | fn iterate(start: usize, finish: usize, step: usize, callback: impl Fn(u32) -> () + std::marker::Sync) { | ^^^^^^^ warning: associated function `into` is never used --> src/ogre_std/instruments.rs:55:18 | 55 | pub const fn into(self) -> usize { | ^^^^ warning: dereferencing a null pointer --> src/ogre_std/ogre_queues/blocking_queue.rs:205:45 | 205 | ... empty_guard_ref: unsafe { &*std::ptr::null() as &RawMutex }, // TODO implement interior mutability to get rid of this anno... | ^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed | = note: `#[warn(deref_nullptr)]` on by default warning: `reactive-mutiny` (lib) generated 35 warnings warning: associated function `send` is never used --> src/uni/channels/tokio_mpsc.rs:59:18 | 59 | pub async fn send(&self, item: ItemType) { | ^^^^ | = note: `#[warn(dead_code)]` on by default warning: `reactive-mutiny` (lib test) generated 15 warnings (10 duplicates) Finished release [optimized] target(s) in 5m 19s Running unittests src/lib.rs (target/release/deps/reactive_mutiny-c113a0ba0612f326) --> LOGGER WAS ALREADY STARTED --> LOGGER WAS ALREADY STARTED 2023-03-18T06:58:46.493Z INFO [reactive_mutiny::stream_executor::tests] minstant: is TSC / RDTSC instruction available for time measurement? false running 99 tests test incremental_averages::tests::incremental_averages ... ok <1.194s> test multi::channels::ogre_mpmc_queue::tests::doc_test ... received: a ok <0.001s> test multi::channels::ogre_mpmc_queue::tests::end_streams ... Creating & ending a single stream: Creating & ending two streams: ok <0.108s> test multi::channels::ogre_mpmc_queue::tests::multiple_streams ... ok <1.122s> test multi::channels::ogre_mpmc_queue::tests::on_the_fly_streams ... 1) streams 1 & 2 about to receive a message 2) stream3 should timeout 3) several creations and removals ok <0.038s> test multi::channels::ogre_mpmc_queue::tests::payload_dropping ... ok <0.001s> test multi::channels::ogre_mpmc_queue::tests::performance_measurements ... OgreMPMCQueue (same task / same thread): 4333208.85/s -- 10485760 items processed in 2.419860287s OgreMPMCQueue (different task / same thread): 3426658.66/s -- 10485760 items processed in 3.060053842s OgreMPMCQueue (different task / different thread): 1384818.13/s -- 10485760 items processed in 7.571940156s ok <13.057s> test multi::channels::ogre_mpmc_queue::tests::stream_and_channel_dropping ... Dropping the channel before the stream consumes the element: received: a Dropping the stream before the channel produces something, then another stream is created to consume the element: received: a ok <0.001s> test multi::tests::async_elements ... 2023-03-18T06:59:02.042Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'async event: Stream Pipeline #1' started: Futures (with timeouts of 2s) / Fallible Items & Metrics 2023-03-18T06:59:02.042Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'async event: Stream Pipeline #2' started: Futures (with timeouts of 2s) / Fallible Items & Metrics PIPELINE 1: Just added # 9 PIPELINE 1: Just added # 8 PIPELINE 1: Just added # 7 PIPELINE 1: Just added # 6 2023-03-18T06:59:03.044Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async event: Stream Pipeline #1' ended after running for 1.001406731s -- stats: | ok: 4 events; avg 1.001319051s - 3.99438/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 0 events; avg 0ns - 0.00000/sec PIPELINE 2: Just added # 9 PIPELINE 2: Just added # 8 PIPELINE 2: Just added # 7 PIPELINE 2: Just added # 6 2023-03-18T06:59:03.044Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async event: Stream Pipeline #2' ended after running for 1.001480685s -- stats: | ok: 4 events; avg 1.00141561s - 3.99409/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 0 events; avg 0ns - 0.00000/sec ok <1.005s> test multi::tests::delete_pipelines ... 2023-03-18T06:59:03.048Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.048Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 60.99µs -- stats: | ok: 0 events 2023-03-18T06:59:03.048Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.050Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.161432ms -- stats: | ok: 0 events 2023-03-18T06:59:03.052Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.052Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 37.687µs -- stats: | ok: 0 events 2023-03-18T06:59:03.055Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.055Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 60.92µs -- stats: | ok: 0 events 2023-03-18T06:59:03.055Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.056Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.171717ms -- stats: | ok: 0 events 2023-03-18T06:59:03.058Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.058Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.559µs -- stats: | ok: 0 events 2023-03-18T06:59:03.058Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.061Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.267245ms -- stats: | ok: 0 events 2023-03-18T06:59:03.062Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.062Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 42.858µs -- stats: | ok: 0 events 2023-03-18T06:59:03.062Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.064Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.149951ms -- stats: | ok: 0 events 2023-03-18T06:59:03.066Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.066Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.658µs -- stats: | ok: 0 events 2023-03-18T06:59:03.066Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.069Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.16887ms -- stats: | ok: 0 events 2023-03-18T06:59:03.071Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.071Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.494µs -- stats: | ok: 0 events 2023-03-18T06:59:03.071Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.073Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.246418ms -- stats: | ok: 0 events 2023-03-18T06:59:03.075Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.075Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 41.966µs -- stats: | ok: 0 events 2023-03-18T06:59:03.075Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.078Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.170654ms -- stats: | ok: 0 events 2023-03-18T06:59:03.080Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.080Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.448µs -- stats: | ok: 0 events 2023-03-18T06:59:03.080Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.082Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.14495ms -- stats: | ok: 0 events 2023-03-18T06:59:03.084Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.084Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 61.692µs -- stats: | ok: 0 events 2023-03-18T06:59:03.084Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.087Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.195506ms -- stats: | ok: 0 events 2023-03-18T06:59:03.089Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.089Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.428µs -- stats: | ok: 0 events 2023-03-18T06:59:03.089Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.091Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.145581ms -- stats: | ok: 0 events 2023-03-18T06:59:03.093Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.093Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.529µs -- stats: | ok: 0 events 2023-03-18T06:59:03.093Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.095Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.196984ms -- stats: | ok: 0 events 2023-03-18T06:59:03.098Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.098Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 64.403µs -- stats: | ok: 0 events 2023-03-18T06:59:03.098Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.100Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.175545ms -- stats: | ok: 0 events 2023-03-18T06:59:03.102Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.102Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.238µs -- stats: | ok: 0 events 2023-03-18T06:59:03.102Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.105Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.230476ms -- stats: | ok: 0 events 2023-03-18T06:59:03.107Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.107Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.395µs -- stats: | ok: 0 events 2023-03-18T06:59:03.107Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.109Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.173581ms -- stats: | ok: 0 events 2023-03-18T06:59:03.111Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.111Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 40.042µs -- stats: | ok: 0 events 2023-03-18T06:59:03.111Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.114Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.383071ms -- stats: | ok: 0 events 2023-03-18T06:59:03.116Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.116Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 43.57µs -- stats: | ok: 0 events 2023-03-18T06:59:03.116Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.118Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.249289ms -- stats: | ok: 0 events 2023-03-18T06:59:03.121Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.121Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 67.966µs -- stats: | ok: 0 events 2023-03-18T06:59:03.121Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.122Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.160196ms -- stats: | ok: 0 events 2023-03-18T06:59:03.124Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.124Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.865µs -- stats: | ok: 0 events 2023-03-18T06:59:03.124Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.127Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.262875ms -- stats: | ok: 0 events 2023-03-18T06:59:03.128Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.128Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 55.097µs -- stats: | ok: 0 events 2023-03-18T06:59:03.128Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.130Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.212149ms -- stats: | ok: 0 events 2023-03-18T06:59:03.133Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.133Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.183µs -- stats: | ok: 0 events 2023-03-18T06:59:03.133Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.135Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.299684ms -- stats: | ok: 0 events 2023-03-18T06:59:03.137Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.137Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.521µs -- stats: | ok: 0 events 2023-03-18T06:59:03.137Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.140Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.262164ms -- stats: | ok: 0 events 2023-03-18T06:59:03.142Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.142Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 67.6µs -- stats: | ok: 0 events 2023-03-18T06:59:03.142Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.144Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.244232ms -- stats: | ok: 0 events 2023-03-18T06:59:03.147Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.147Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 114.167µs -- stats: | ok: 0 events 2023-03-18T06:59:03.147Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.148Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.17965ms -- stats: | ok: 0 events 2023-03-18T06:59:03.150Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.150Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 39.2µs -- stats: | ok: 0 events 2023-03-18T06:59:03.150Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.152Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.168989ms -- stats: | ok: 0 events 2023-03-18T06:59:03.155Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.155Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.398µs -- stats: | ok: 0 events 2023-03-18T06:59:03.155Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.147816ms -- stats: | ok: 0 events 2023-03-18T06:59:03.159Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.368µs -- stats: | ok: 0 events 2023-03-18T06:59:03.159Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.218794ms -- stats: | ok: 0 events 2023-03-18T06:59:03.164Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 43.113µs -- stats: | ok: 0 events 2023-03-18T06:59:03.164Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.162866ms -- stats: | ok: 0 events 2023-03-18T06:59:03.168Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.168Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.308µs -- stats: | ok: 0 events 2023-03-18T06:59:03.168Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.170Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.213663ms -- stats: | ok: 0 events 2023-03-18T06:59:03.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.173Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 43.084µs -- stats: | ok: 0 events 2023-03-18T06:59:03.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.175Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.256025ms -- stats: | ok: 0 events 2023-03-18T06:59:03.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.177Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 43.259µs -- stats: | ok: 0 events 2023-03-18T06:59:03.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.180Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.170879ms -- stats: | ok: 0 events 2023-03-18T06:59:03.182Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.172µs -- stats: | ok: 0 events 2023-03-18T06:59:03.182Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.143918ms -- stats: | ok: 0 events 2023-03-18T06:59:03.186Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.744µs -- stats: | ok: 0 events 2023-03-18T06:59:03.186Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.197325ms -- stats: | ok: 0 events 2023-03-18T06:59:03.191Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.191Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.396µs -- stats: | ok: 0 events 2023-03-18T06:59:03.191Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.193Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.180376ms -- stats: | ok: 0 events 2023-03-18T06:59:03.195Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.195Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.704µs -- stats: | ok: 0 events 2023-03-18T06:59:03.195Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.198Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.221862ms -- stats: | ok: 0 events 2023-03-18T06:59:03.200Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.200Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 44.828µs -- stats: | ok: 0 events 2023-03-18T06:59:03.200Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.202Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.149971ms -- stats: | ok: 0 events 2023-03-18T06:59:03.204Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.204Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.934µs -- stats: | ok: 0 events 2023-03-18T06:59:03.204Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.207Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.16895ms -- stats: | ok: 0 events 2023-03-18T06:59:03.209Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.209Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.318µs -- stats: | ok: 0 events 2023-03-18T06:59:03.209Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.211Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.144614ms -- stats: | ok: 0 events 2023-03-18T06:59:03.213Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.213Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 60.404µs -- stats: | ok: 0 events 2023-03-18T06:59:03.213Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.216Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.238319ms -- stats: | ok: 0 events 2023-03-18T06:59:03.218Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.218Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 44.988µs -- stats: | ok: 0 events 2023-03-18T06:59:03.218Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.220Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.151374ms -- stats: | ok: 0 events 2023-03-18T06:59:03.222Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.222Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.593µs -- stats: | ok: 0 events 2023-03-18T06:59:03.222Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.225Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.207849ms -- stats: | ok: 0 events 2023-03-18T06:59:03.227Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.227Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 45.379µs -- stats: | ok: 0 events 2023-03-18T06:59:03.227Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.229Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.157088ms -- stats: | ok: 0 events 2023-03-18T06:59:03.231Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.231Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.633µs -- stats: | ok: 0 events 2023-03-18T06:59:03.231Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.234Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.220904ms -- stats: | ok: 0 events 2023-03-18T06:59:03.236Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.236Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 45.309µs -- stats: | ok: 0 events 2023-03-18T06:59:03.236Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.238Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.146227ms -- stats: | ok: 0 events 2023-03-18T06:59:03.240Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.240Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.931µs -- stats: | ok: 0 events 2023-03-18T06:59:03.240Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.313181ms -- stats: | ok: 0 events 2023-03-18T06:59:03.244Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 42.096µs -- stats: | ok: 0 events 2023-03-18T06:59:03.244Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.150307ms -- stats: | ok: 0 events 2023-03-18T06:59:03.248Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.659µs -- stats: | ok: 0 events 2023-03-18T06:59:03.248Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.170168ms -- stats: | ok: 0 events 2023-03-18T06:59:03.253Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 64.172µs -- stats: | ok: 0 events 2023-03-18T06:59:03.253Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.255Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.176588ms -- stats: | ok: 0 events 2023-03-18T06:59:03.257Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.464µs -- stats: | ok: 0 events 2023-03-18T06:59:03.258Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.260Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.196087ms -- stats: | ok: 0 events 2023-03-18T06:59:03.261Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.261Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.133µs -- stats: | ok: 0 events 2023-03-18T06:59:03.261Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.263Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.148192ms -- stats: | ok: 0 events 2023-03-18T06:59:03.265Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.265Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.709µs -- stats: | ok: 0 events 2023-03-18T06:59:03.265Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.268Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.169582ms -- stats: | ok: 0 events 2023-03-18T06:59:03.270Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.270Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.268µs -- stats: | ok: 0 events 2023-03-18T06:59:03.270Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.272Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.144834ms -- stats: | ok: 0 events 2023-03-18T06:59:03.274Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.274Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.768µs -- stats: | ok: 0 events 2023-03-18T06:59:03.274Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.276Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.195877ms -- stats: | ok: 0 events 2023-03-18T06:59:03.279Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.279Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 61.471µs -- stats: | ok: 0 events 2023-03-18T06:59:03.279Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.281Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.181674ms -- stats: | ok: 0 events 2023-03-18T06:59:03.283Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.283Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.574µs -- stats: | ok: 0 events 2023-03-18T06:59:03.283Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.286Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.218328ms -- stats: | ok: 0 events 2023-03-18T06:59:03.288Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.288Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 44.983µs -- stats: | ok: 0 events 2023-03-18T06:59:03.288Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.290Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.145977ms -- stats: | ok: 0 events 2023-03-18T06:59:03.292Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.292Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.298µs -- stats: | ok: 0 events 2023-03-18T06:59:03.292Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.294Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.230411ms -- stats: | ok: 0 events 2023-03-18T06:59:03.297Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.297Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 58.97µs -- stats: | ok: 0 events 2023-03-18T06:59:03.297Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.299Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.181724ms -- stats: | ok: 0 events 2023-03-18T06:59:03.301Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.301Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.719µs -- stats: | ok: 0 events 2023-03-18T06:59:03.301Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.304Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.222718ms -- stats: | ok: 0 events 2023-03-18T06:59:03.305Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.305Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 45.084µs -- stats: | ok: 0 events 2023-03-18T06:59:03.305Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.307Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.149365ms -- stats: | ok: 0 events 2023-03-18T06:59:03.309Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.309Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.82µs -- stats: | ok: 0 events 2023-03-18T06:59:03.309Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.312Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.169356ms -- stats: | ok: 0 events 2023-03-18T06:59:03.314Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.314Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.282µs -- stats: | ok: 0 events 2023-03-18T06:59:03.314Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.316Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.144785ms -- stats: | ok: 0 events 2023-03-18T06:59:03.318Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.318Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.949µs -- stats: | ok: 0 events 2023-03-18T06:59:03.318Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.320Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.195611ms -- stats: | ok: 0 events 2023-03-18T06:59:03.323Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.323Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 47.754µs -- stats: | ok: 0 events 2023-03-18T06:59:03.323Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.324Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.148254ms -- stats: | ok: 0 events 2023-03-18T06:59:03.326Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.326Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 39.115µs -- stats: | ok: 0 events 2023-03-18T06:59:03.326Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.328Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.169626ms -- stats: | ok: 0 events 2023-03-18T06:59:03.331Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.331Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.25µs -- stats: | ok: 0 events 2023-03-18T06:59:03.331Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.332Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.175426ms -- stats: | ok: 0 events 2023-03-18T06:59:03.334Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.334Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.884µs -- stats: | ok: 0 events 2023-03-18T06:59:03.334Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.336Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.169331ms -- stats: | ok: 0 events 2023-03-18T06:59:03.339Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.339Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 69.129µs -- stats: | ok: 0 events 2023-03-18T06:59:03.339Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.340Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.144821ms -- stats: | ok: 0 events 2023-03-18T06:59:03.342Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.342Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.658µs -- stats: | ok: 0 events 2023-03-18T06:59:03.342Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.344Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.169351ms -- stats: | ok: 0 events 2023-03-18T06:59:03.347Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.347Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 52.129µs -- stats: | ok: 0 events 2023-03-18T06:59:03.347Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.349Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.230166ms -- stats: | ok: 0 events 2023-03-18T06:59:03.351Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.351Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 40.152µs -- stats: | ok: 0 events 2023-03-18T06:59:03.351Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.353Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.186816ms -- stats: | ok: 0 events 2023-03-18T06:59:03.356Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.724µs -- stats: | ok: 0 events 2023-03-18T06:59:03.356Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.358Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.166113ms -- stats: | ok: 0 events 2023-03-18T06:59:03.360Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.360Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 61.19µs -- stats: | ok: 0 events 2023-03-18T06:59:03.360Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.362Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.264339ms -- stats: | ok: 0 events 2023-03-18T06:59:03.365Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.365Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.975µs -- stats: | ok: 0 events 2023-03-18T06:59:03.365Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.367Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.179689ms -- stats: | ok: 0 events 2023-03-18T06:59:03.369Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.369Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.769µs -- stats: | ok: 0 events 2023-03-18T06:59:03.369Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.372Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.171416ms -- stats: | ok: 0 events 2023-03-18T06:59:03.374Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.374Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.217µs -- stats: | ok: 0 events 2023-03-18T06:59:03.374Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.376Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.144624ms -- stats: | ok: 0 events 2023-03-18T06:59:03.378Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.378Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 64.969µs -- stats: | ok: 0 events 2023-03-18T06:59:03.378Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.381Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.265827ms -- stats: | ok: 0 events 2023-03-18T06:59:03.382Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.382Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 54.635µs -- stats: | ok: 0 events 2023-03-18T06:59:03.382Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.384Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.161458ms -- stats: | ok: 0 events 2023-03-18T06:59:03.386Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.387Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.568µs -- stats: | ok: 0 events 2023-03-18T06:59:03.387Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.389Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.207769ms -- stats: | ok: 0 events 2023-03-18T06:59:03.390Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.390Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.228µs -- stats: | ok: 0 events 2023-03-18T06:59:03.390Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.392Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.149826ms -- stats: | ok: 0 events 2023-03-18T06:59:03.394Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.394Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 38.594µs -- stats: | ok: 0 events 2023-03-18T06:59:03.394Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.397Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.202031ms -- stats: | ok: 0 events 2023-03-18T06:59:03.399Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.399Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.947µs -- stats: | ok: 0 events 2023-03-18T06:59:03.399Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.401Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.206306ms -- stats: | ok: 0 events 2023-03-18T06:59:03.404Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.404Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 64.608µs -- stats: | ok: 0 events 2023-03-18T06:59:03.404Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.405Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.292169ms -- stats: | ok: 0 events 2023-03-18T06:59:03.407Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.407Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 42.899µs -- stats: | ok: 0 events 2023-03-18T06:59:03.407Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.410Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.246328ms -- stats: | ok: 0 events 2023-03-18T06:59:03.412Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.412Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 61.712µs -- stats: | ok: 0 events 2023-03-18T06:59:03.412Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.414Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.265717ms -- stats: | ok: 0 events 2023-03-18T06:59:03.417Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.417Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.528µs -- stats: | ok: 0 events 2023-03-18T06:59:03.417Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.419Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.265637ms -- stats: | ok: 0 events 2023-03-18T06:59:03.421Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.421Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 59.351µs -- stats: | ok: 0 events 2023-03-18T06:59:03.421Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.424Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.248623ms -- stats: | ok: 0 events 2023-03-18T06:59:03.426Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.426Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.438µs -- stats: | ok: 0 events 2023-03-18T06:59:03.426Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.428Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.261502ms -- stats: | ok: 0 events 2023-03-18T06:59:03.431Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.431Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.782µs -- stats: | ok: 0 events 2023-03-18T06:59:03.431Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.433Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.261933ms -- stats: | ok: 0 events 2023-03-18T06:59:03.435Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.435Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.599µs -- stats: | ok: 0 events 2023-03-18T06:59:03.435Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.438Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.260004ms -- stats: | ok: 0 events 2023-03-18T06:59:03.440Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.440Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.495µs -- stats: | ok: 0 events 2023-03-18T06:59:03.440Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.442Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.243441ms -- stats: | ok: 0 events 2023-03-18T06:59:03.445Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.445Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 64.288µs -- stats: | ok: 0 events 2023-03-18T06:59:03.445Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.447Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.303564ms -- stats: | ok: 0 events 2023-03-18T06:59:03.449Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.449Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.841µs -- stats: | ok: 0 events 2023-03-18T06:59:03.449Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.452Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.26079ms -- stats: | ok: 0 events 2023-03-18T06:59:03.454Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.454Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.253µs -- stats: | ok: 0 events 2023-03-18T06:59:03.454Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.456Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.25852ms -- stats: | ok: 0 events 2023-03-18T06:59:03.459Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.459Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 142.407µs -- stats: | ok: 0 events 2023-03-18T06:59:03.459Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.460Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.16839ms -- stats: | ok: 0 events 2023-03-18T06:59:03.462Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.462Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 39.556µs -- stats: | ok: 0 events 2023-03-18T06:59:03.462Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.465Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.249901ms -- stats: | ok: 0 events 2023-03-18T06:59:03.467Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.467Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 61.972µs -- stats: | ok: 0 events 2023-03-18T06:59:03.467Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.469Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.216223ms -- stats: | ok: 0 events 2023-03-18T06:59:03.471Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.472Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 56.229µs -- stats: | ok: 0 events 2023-03-18T06:59:03.472Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.474Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.260385ms -- stats: | ok: 0 events 2023-03-18T06:59:03.476Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.476Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 59.322µs -- stats: | ok: 0 events 2023-03-18T06:59:03.476Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.478Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.260981ms -- stats: | ok: 0 events 2023-03-18T06:59:03.481Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.481Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.047µs -- stats: | ok: 0 events 2023-03-18T06:59:03.481Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.483Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.259813ms -- stats: | ok: 0 events 2023-03-18T06:59:03.485Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.486Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 61.32µs -- stats: | ok: 0 events 2023-03-18T06:59:03.486Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.488Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.263501ms -- stats: | ok: 0 events 2023-03-18T06:59:03.490Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.490Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.39µs -- stats: | ok: 0 events 2023-03-18T06:59:03.490Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.493Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.261272ms -- stats: | ok: 0 events 2023-03-18T06:59:03.495Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.495Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 60.038µs -- stats: | ok: 0 events 2023-03-18T06:59:03.495Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.497Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.318698ms -- stats: | ok: 0 events 2023-03-18T06:59:03.500Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.500Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 54.715µs -- stats: | ok: 0 events 2023-03-18T06:59:03.500Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.256752ms -- stats: | ok: 0 events 2023-03-18T06:59:03.504Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.504Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 42.908µs -- stats: | ok: 0 events 2023-03-18T06:59:03.504Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.506Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.2323ms -- stats: | ok: 0 events 2023-03-18T06:59:03.509Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.509Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 61.781µs -- stats: | ok: 0 events 2023-03-18T06:59:03.509Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.511Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.259242ms -- stats: | ok: 0 events 2023-03-18T06:59:03.513Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.17µs -- stats: | ok: 0 events 2023-03-18T06:59:03.514Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.516Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.261628ms -- stats: | ok: 0 events 2023-03-18T06:59:03.518Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.518Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.722µs -- stats: | ok: 0 events 2023-03-18T06:59:03.518Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.261221ms -- stats: | ok: 0 events 2023-03-18T06:59:03.523Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.523Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.433µs -- stats: | ok: 0 events 2023-03-18T06:59:03.523Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.525Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.247585ms -- stats: | ok: 0 events 2023-03-18T06:59:03.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.528Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.664µs -- stats: | ok: 0 events 2023-03-18T06:59:03.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.530Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.26502ms -- stats: | ok: 0 events 2023-03-18T06:59:03.532Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.532Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.044µs -- stats: | ok: 0 events 2023-03-18T06:59:03.532Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.268328ms -- stats: | ok: 0 events 2023-03-18T06:59:03.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 52.781µs -- stats: | ok: 0 events 2023-03-18T06:59:03.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.539Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.265542ms -- stats: | ok: 0 events 2023-03-18T06:59:03.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.542Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.661µs -- stats: | ok: 0 events 2023-03-18T06:59:03.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.544Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.262425ms -- stats: | ok: 0 events 2023-03-18T06:59:03.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.546Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 58.895µs -- stats: | ok: 0 events 2023-03-18T06:59:03.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.549Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.265566ms -- stats: | ok: 0 events 2023-03-18T06:59:03.551Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.551Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.551µs -- stats: | ok: 0 events 2023-03-18T06:59:03.551Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.553Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.26266ms -- stats: | ok: 0 events 2023-03-18T06:59:03.556Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.556Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.861µs -- stats: | ok: 0 events 2023-03-18T06:59:03.556Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.558Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.182079ms -- stats: | ok: 0 events 2023-03-18T06:59:03.560Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.560Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.23µs -- stats: | ok: 0 events 2023-03-18T06:59:03.560Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.562Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.262224ms -- stats: | ok: 0 events 2023-03-18T06:59:03.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.565Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 61.777µs -- stats: | ok: 0 events 2023-03-18T06:59:03.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.567Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.249399ms -- stats: | ok: 0 events 2023-03-18T06:59:03.569Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.570Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.524µs -- stats: | ok: 0 events 2023-03-18T06:59:03.570Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.572Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.265391ms -- stats: | ok: 0 events 2023-03-18T06:59:03.574Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.574Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.275µs -- stats: | ok: 0 events 2023-03-18T06:59:03.574Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.576Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.226692ms -- stats: | ok: 0 events 2023-03-18T06:59:03.579Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 55.291µs -- stats: | ok: 0 events 2023-03-18T06:59:03.579Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.581Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.265781ms -- stats: | ok: 0 events 2023-03-18T06:59:03.583Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 61.812µs -- stats: | ok: 0 events 2023-03-18T06:59:03.584Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.586Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.259929ms -- stats: | ok: 0 events 2023-03-18T06:59:03.588Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.894µs -- stats: | ok: 0 events 2023-03-18T06:59:03.588Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.591Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.263672ms -- stats: | ok: 0 events 2023-03-18T06:59:03.593Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.593Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 56.715µs -- stats: | ok: 0 events 2023-03-18T06:59:03.593Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.263041ms -- stats: | ok: 0 events 2023-03-18T06:59:03.597Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.598Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.233µs -- stats: | ok: 0 events 2023-03-18T06:59:03.598Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.264078ms -- stats: | ok: 0 events 2023-03-18T06:59:03.602Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.602Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 61.918µs -- stats: | ok: 0 events 2023-03-18T06:59:03.602Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.605Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.262269ms -- stats: | ok: 0 events 2023-03-18T06:59:03.607Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 59.371µs -- stats: | ok: 0 events 2023-03-18T06:59:03.607Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.609Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.259046ms -- stats: | ok: 0 events 2023-03-18T06:59:03.612Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.612Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 63.876µs -- stats: | ok: 0 events 2023-03-18T06:59:03.612Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.614Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.263471ms -- stats: | ok: 0 events 2023-03-18T06:59:03.616Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.616Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 62.689µs -- stats: | ok: 0 events 2023-03-18T06:59:03.616Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.619Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.252271ms -- stats: | ok: 0 events 2023-03-18T06:59:03.621Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.621Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 54.184µs -- stats: | ok: 0 events 2023-03-18T06:59:03.621Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.623Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.264248ms -- stats: | ok: 0 events 2023-03-18T06:59:03.626Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.628Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #2' ended after running for 2.259773ms -- stats: | ok: 1 events ok <0.584s> test multi::tests::demux ... 2023-03-18T06:59:03.632Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.632Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.632Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.632Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.632Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.632Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:03.736Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO: Pipeline #1' ended after running for 103.72809ms -- stats: | ok: 4 events 2023-03-18T06:59:03.736Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO: Pipeline #2' ended after running for 103.791812ms -- stats: | ok: 4 events 2023-03-18T06:59:03.736Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR: Pipeline #1' ended after running for 103.837772ms -- stats: | ok: 6 events 2023-03-18T06:59:03.736Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR: Pipeline #2' ended after running for 103.886308ms -- stats: | ok: 6 events 2023-03-18T06:59:03.736Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIX: Pipeline #1' ended after running for 104.088928ms -- stats: | ok: 1 events 2023-03-18T06:59:03.736Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIX: Pipeline #2' ended after running for 104.115764ms -- stats: | ok: 1 events ok <0.109s> test multi::tests::doc_tests ... 2023-03-18T06:59:03.742Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'doc_test() event: local screen' started: Non-Futures / Non-Fallible Items & Metrics To Zeta: 'I've just arrived!' To Zeta: 'Nothing really interesting here... heading back home!' 2023-03-18T06:59:03.742Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'doc_test() event: zeta receiver' started: Non-Futures / Non-Fallible Items & Metrics ZETA: Received a message: 'I've just arrived!' ZETA: Received a message: 'Nothing really interesting here... heading back home!' 2023-03-18T06:59:03.742Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'doc_test() event: earth snapper' started: Non-Futures / Non-Fallible Items & Metrics EARTH: Sneak peeked a message to Zeta Reticuli: 'I've just arrived!' EARTH: Sneak peeked a message to Zeta Reticuli: 'Nothing really interesting here... heading back home!' 2023-03-18T06:59:03.744Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: local screen' ended after running for 2.287162ms -- stats: | ok: 2 events 2023-03-18T06:59:03.744Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: zeta receiver' ended after running for 2.314418ms -- stats: | ok: 2 events 2023-03-18T06:59:03.744Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: earth snapper' ended after running for 2.328937ms -- stats: | ok: 2 events ok <0.007s> test multi::tests::error_handling ... 2023-03-18T06:59:03.750Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with error handling: Pipeline #1' started: Futures (with timeouts of 100ms) / Fallible Items & Metrics Payload 0 ACCURATELY PROCESSED! Payload 0 continued down the pipe Payload ODD payload received: 1 ERROR LOG -- this error is tolerable and this event will be skipped for the rest of the pipeline Payload 2 ACCURATELY PROCESSED! Payload 2 continued down the pipe 2023-03-18T06:59:03.750Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'Event with error handling: Pipeline #1' yielded ERROR '"BLOW CODE received: 79"' in 1.363µs Pipeline #1: ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-18T06:59:03.750Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with error handling: Pipeline #2' started: Futures (with timeouts of 100ms) / Fallible Items & Metrics Payload 0 ACCURATELY PROCESSED! Payload 0 continued down the pipe Payload ODD payload received: 1 ERROR LOG -- this error is tolerable and this event will be skipped for the rest of the pipeline Payload 2 ACCURATELY PROCESSED! Payload 2 continued down the pipe 2023-03-18T06:59:03.750Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'Event with error handling: Pipeline #2' yielded ERROR '"BLOW CODE received: 79"' in 1.333µs Pipeline #2: ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-18T06:59:03.752Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with error handling: Pipeline #1' ended after running for 2.425238ms -- stats: | ok: 3 events; avg 5.43µs - 1236.99200/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 1.363µs - 412.33067/sec 2023-03-18T06:59:03.752Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with error handling: Pipeline #2' ended after running for 2.31298ms -- stats: | ok: 3 events; avg 5.051µs - 1297.02808/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 1.333µs - 432.34269/sec ok <0.007s> test multi::tests::performance_measurements ... metricfull_non_futures_non_fallible_multi: 1046856.64/s -- 4194304 items processed in 4.006569625s metricless_non_futures_non_fallible_multi: 1271694.91/s -- 4194304 items processed in 3.29819987s par_metricless_non_futures_non_fallible_multi: 755631.69/s -- 4194304 items processed in 5.550725413s metricfull_futures_fallible_multi: 850016.80/s -- 4194304 items processed in 4.934377783s metricless_futures_fallible_multi: 1072554.62/s -- 4194304 items processed in 3.910573805s timeoutable_metricfull_futures_fallible_multi: 716511.46/s -- 3145728 items processed in 4.390338712s timeoutable_metricless_futures_fallible_multi: 859296.05/s -- 3145728 items processed in 3.660819812s ok <29.758s> test multi::tests::simple_pipelines ... 2023-03-18T06:59:33.516Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Simple Event: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.516Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Simple Event: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.518Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Simple Event: Pipeline #1' ended after running for 2.181063ms -- stats: | ok: 2 events 2023-03-18T06:59:33.518Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Simple Event: Pipeline #2' ended after running for 2.177961ms -- stats: | ok: 2 events ok <0.007s> test multi::tests::stats ... 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #0 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #1 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #2 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #3 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #4 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #5 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #6 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #7 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #8 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #9 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #10 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #11 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #12 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #13 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #14 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #15 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #16 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #17 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #18 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #19 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #20 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #21 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #22 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #23 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #24 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #25 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #26 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #27 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #28 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #29 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #30 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #31 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #32 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #33 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #34 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #35 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #36 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #37 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #38 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #39 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #40 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #41 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #42 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #43 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #44 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #45 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #46 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #47 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #48 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #49 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #50 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #51 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #52 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #53 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #54 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #55 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #56 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #57 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #58 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #59 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.527Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #60 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #61 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #62 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #63 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #64 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #65 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #66 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #67 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #68 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #69 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #70 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #71 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #72 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #73 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #74 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #75 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #76 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #77 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #78 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #79 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #80 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.528Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #81 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #82 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #83 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #84 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #85 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #86 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #87 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #88 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #89 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #90 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #91 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #92 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #93 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #94 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #95 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #96 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #97 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #98 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #99 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #100 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #101 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #102 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #103 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #104 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #105 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #106 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #107 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #108 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #109 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #110 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #111 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #112 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #113 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #114 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #115 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #116 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #117 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #118 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #119 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #120 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #121 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #122 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #123 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #124 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #125 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #126 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #127 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.529Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #128 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #129 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #130 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #131 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #132 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #133 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #134 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #135 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #136 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #137 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #138 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #139 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #140 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #141 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #142 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #143 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #144 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #145 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #146 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #147 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #148 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #149 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #150 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #151 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #152 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #153 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #154 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #155 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #156 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #157 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #158 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #159 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #160 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #161 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #162 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #163 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #164 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #165 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #166 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #167 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #168 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #169 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #170 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #171 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #172 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #173 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #174 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #175 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #176 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #177 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #178 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #179 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #180 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #181 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #182 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #183 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #184 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #185 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #186 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #187 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #188 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #189 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #190 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #191 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.530Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #192 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #193 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #194 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #195 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #196 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #197 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #198 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #199 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #200 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #201 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #202 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #203 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #204 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #205 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #206 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #207 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #208 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #209 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #210 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #211 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #212 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #213 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #214 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #215 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #216 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #217 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #218 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #219 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #220 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #221 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #222 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #223 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #224 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #225 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #226 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #227 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #228 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #229 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #230 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #231 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #232 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #233 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #234 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #235 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #236 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #237 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #238 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #239 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #240 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #241 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #242 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #243 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #244 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #245 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #246 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #247 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #248 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #249 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #250 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #251 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #252 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #253 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #254 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event: Pipeline #255 for non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #0 for non_future/non_fallible event' ended after running for 6.566968ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #1 for non_future/non_fallible event' ended after running for 6.571092ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #2 for non_future/non_fallible event' ended after running for 6.566696ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #3 for non_future/non_fallible event' ended after running for 6.563104ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #4 for non_future/non_fallible event' ended after running for 6.594431ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #5 for non_future/non_fallible event' ended after running for 6.607626ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #6 for non_future/non_fallible event' ended after running for 6.640442ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #7 for non_future/non_fallible event' ended after running for 6.668094ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #8 for non_future/non_fallible event' ended after running for 6.674489ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #9 for non_future/non_fallible event' ended after running for 6.689514ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #10 for non_future/non_fallible event' ended after running for 6.692255ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #11 for non_future/non_fallible event' ended after running for 6.690947ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #12 for non_future/non_fallible event' ended after running for 6.688506ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #13 for non_future/non_fallible event' ended after running for 6.687454ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #14 for non_future/non_fallible event' ended after running for 6.68556ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #15 for non_future/non_fallible event' ended after running for 6.684662ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #16 for non_future/non_fallible event' ended after running for 6.684117ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #17 for non_future/non_fallible event' ended after running for 6.682272ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #18 for non_future/non_fallible event' ended after running for 6.68122ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #19 for non_future/non_fallible event' ended after running for 6.680062ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #20 for non_future/non_fallible event' ended after running for 6.678323ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #21 for non_future/non_fallible event' ended after running for 6.674244ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #22 for non_future/non_fallible event' ended after running for 6.673126ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #23 for non_future/non_fallible event' ended after running for 6.678488ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #24 for non_future/non_fallible event' ended after running for 6.678302ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #25 for non_future/non_fallible event' ended after running for 6.673426ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #26 for non_future/non_fallible event' ended after running for 6.671422ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #27 for non_future/non_fallible event' ended after running for 6.670856ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #28 for non_future/non_fallible event' ended after running for 6.667158ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #29 for non_future/non_fallible event' ended after running for 6.665749ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #30 for non_future/non_fallible event' ended after running for 6.66169ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #31 for non_future/non_fallible event' ended after running for 6.656067ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #32 for non_future/non_fallible event' ended after running for 6.650083ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #33 for non_future/non_fallible event' ended after running for 6.647582ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #34 for non_future/non_fallible event' ended after running for 6.625913ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #35 for non_future/non_fallible event' ended after running for 6.618631ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #36 for non_future/non_fallible event' ended after running for 6.615023ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #37 for non_future/non_fallible event' ended after running for 6.61411ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #38 for non_future/non_fallible event' ended after running for 6.609025ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #39 for non_future/non_fallible event' ended after running for 6.606563ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #40 for non_future/non_fallible event' ended after running for 6.601151ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #41 for non_future/non_fallible event' ended after running for 6.601452ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #42 for non_future/non_fallible event' ended after running for 6.596561ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #43 for non_future/non_fallible event' ended after running for 6.59394ms -- stats: | ok: 1 events 2023-03-18T06:59:33.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #44 for non_future/non_fallible event' ended after running for 6.590035ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #45 for non_future/non_fallible event' ended after running for 6.587014ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #46 for non_future/non_fallible event' ended after running for 6.580513ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #47 for non_future/non_fallible event' ended after running for 6.57878ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #48 for non_future/non_fallible event' ended after running for 6.573447ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #49 for non_future/non_fallible event' ended after running for 6.569739ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #50 for non_future/non_fallible event' ended after running for 6.566105ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #51 for non_future/non_fallible event' ended after running for 6.565059ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #52 for non_future/non_fallible event' ended after running for 6.561555ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #53 for non_future/non_fallible event' ended after running for 6.559556ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #54 for non_future/non_fallible event' ended after running for 6.560839ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #55 for non_future/non_fallible event' ended after running for 6.586693ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #56 for non_future/non_fallible event' ended after running for 6.600766ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #57 for non_future/non_fallible event' ended after running for 6.608387ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #58 for non_future/non_fallible event' ended after running for 6.617333ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #59 for non_future/non_fallible event' ended after running for 6.626273ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #60 for non_future/non_fallible event' ended after running for 6.638035ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #61 for non_future/non_fallible event' ended after running for 5.827607ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #62 for non_future/non_fallible event' ended after running for 5.836898ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #63 for non_future/non_fallible event' ended after running for 5.841774ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #64 for non_future/non_fallible event' ended after running for 5.838727ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #65 for non_future/non_fallible event' ended after running for 5.835219ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #66 for non_future/non_fallible event' ended after running for 5.831129ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #67 for non_future/non_fallible event' ended after running for 5.827837ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #68 for non_future/non_fallible event' ended after running for 5.823552ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #69 for non_future/non_fallible event' ended after running for 5.82284ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #70 for non_future/non_fallible event' ended after running for 5.821042ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #71 for non_future/non_fallible event' ended after running for 5.816767ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #72 for non_future/non_fallible event' ended after running for 5.814276ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #73 for non_future/non_fallible event' ended after running for 5.808644ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #74 for non_future/non_fallible event' ended after running for 5.805566ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #75 for non_future/non_fallible event' ended after running for 5.800615ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #76 for non_future/non_fallible event' ended after running for 5.79653ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #77 for non_future/non_fallible event' ended after running for 5.791278ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #78 for non_future/non_fallible event' ended after running for 5.787665ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #79 for non_future/non_fallible event' ended after running for 5.784017ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #80 for non_future/non_fallible event' ended after running for 5.779868ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #81 for non_future/non_fallible event' ended after running for 5.773287ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #82 for non_future/non_fallible event' ended after running for 5.769153ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #83 for non_future/non_fallible event' ended after running for 5.764532ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #84 for non_future/non_fallible event' ended after running for 5.759074ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #85 for non_future/non_fallible event' ended after running for 5.753512ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #86 for non_future/non_fallible event' ended after running for 5.750926ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #87 for non_future/non_fallible event' ended after running for 5.746129ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #88 for non_future/non_fallible event' ended after running for 5.744005ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #89 for non_future/non_fallible event' ended after running for 5.738803ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #90 for non_future/non_fallible event' ended after running for 5.734127ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #91 for non_future/non_fallible event' ended after running for 5.712533ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #92 for non_future/non_fallible event' ended after running for 5.70473ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #93 for non_future/non_fallible event' ended after running for 5.701653ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #94 for non_future/non_fallible event' ended after running for 5.697619ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #95 for non_future/non_fallible event' ended after running for 5.696005ms -- stats: | ok: 1 events 2023-03-18T06:59:33.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #96 for non_future/non_fallible event' ended after running for 5.693519ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #97 for non_future/non_fallible event' ended after running for 5.688598ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #98 for non_future/non_fallible event' ended after running for 5.685315ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #99 for non_future/non_fallible event' ended after running for 5.682008ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #100 for non_future/non_fallible event' ended after running for 5.6765ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #101 for non_future/non_fallible event' ended after running for 5.674005ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #102 for non_future/non_fallible event' ended after running for 5.674766ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #103 for non_future/non_fallible event' ended after running for 5.683576ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #104 for non_future/non_fallible event' ended after running for 5.694432ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #105 for non_future/non_fallible event' ended after running for 5.722596ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #106 for non_future/non_fallible event' ended after running for 5.730659ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #107 for non_future/non_fallible event' ended after running for 5.739485ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #108 for non_future/non_fallible event' ended after running for 5.753086ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #109 for non_future/non_fallible event' ended after running for 5.753357ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #110 for non_future/non_fallible event' ended after running for 5.749398ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #111 for non_future/non_fallible event' ended after running for 5.746772ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #112 for non_future/non_fallible event' ended after running for 5.741074ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #113 for non_future/non_fallible event' ended after running for 5.742121ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #114 for non_future/non_fallible event' ended after running for 5.737836ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #115 for non_future/non_fallible event' ended after running for 5.734709ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #116 for non_future/non_fallible event' ended after running for 5.728991ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #117 for non_future/non_fallible event' ended after running for 5.725938ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #118 for non_future/non_fallible event' ended after running for 5.722486ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #119 for non_future/non_fallible event' ended after running for 5.719313ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #120 for non_future/non_fallible event' ended after running for 5.713334ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #121 for non_future/non_fallible event' ended after running for 5.708383ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #122 for non_future/non_fallible event' ended after running for 5.694386ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #123 for non_future/non_fallible event' ended after running for 5.688352ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #124 for non_future/non_fallible event' ended after running for 5.681762ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #125 for non_future/non_fallible event' ended after running for 5.67628ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #126 for non_future/non_fallible event' ended after running for 5.671308ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #127 for non_future/non_fallible event' ended after running for 5.666663ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #128 for non_future/non_fallible event' ended after running for 5.664502ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #129 for non_future/non_fallible event' ended after running for 5.658624ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #130 for non_future/non_fallible event' ended after running for 5.653968ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #131 for non_future/non_fallible event' ended after running for 5.651583ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #132 for non_future/non_fallible event' ended after running for 5.647278ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #133 for non_future/non_fallible event' ended after running for 5.642857ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #134 for non_future/non_fallible event' ended after running for 5.639716ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #135 for non_future/non_fallible event' ended after running for 5.636283ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #136 for non_future/non_fallible event' ended after running for 5.631948ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #137 for non_future/non_fallible event' ended after running for 5.626987ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #138 for non_future/non_fallible event' ended after running for 5.603603ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #139 for non_future/non_fallible event' ended after running for 5.599473ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #140 for non_future/non_fallible event' ended after running for 5.594316ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #141 for non_future/non_fallible event' ended after running for 5.589751ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #142 for non_future/non_fallible event' ended after running for 5.587251ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #143 for non_future/non_fallible event' ended after running for 5.578846ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #144 for non_future/non_fallible event' ended after running for 5.582079ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #145 for non_future/non_fallible event' ended after running for 5.587536ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #146 for non_future/non_fallible event' ended after running for 5.593504ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #147 for non_future/non_fallible event' ended after running for 5.598381ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #148 for non_future/non_fallible event' ended after running for 5.595916ms -- stats: | ok: 1 events 2023-03-18T06:59:33.535Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #149 for non_future/non_fallible event' ended after running for 5.595725ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #150 for non_future/non_fallible event' ended after running for 5.593214ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #151 for non_future/non_fallible event' ended after running for 5.588609ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #152 for non_future/non_fallible event' ended after running for 5.58742ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #153 for non_future/non_fallible event' ended after running for 5.597113ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #154 for non_future/non_fallible event' ended after running for 5.60895ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #155 for non_future/non_fallible event' ended after running for 5.619319ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #156 for non_future/non_fallible event' ended after running for 5.627853ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #157 for non_future/non_fallible event' ended after running for 5.652745ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #158 for non_future/non_fallible event' ended after running for 5.666056ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #159 for non_future/non_fallible event' ended after running for 5.680339ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #160 for non_future/non_fallible event' ended after running for 5.694001ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #161 for non_future/non_fallible event' ended after running for 5.710127ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #162 for non_future/non_fallible event' ended after running for 5.719799ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #163 for non_future/non_fallible event' ended after running for 5.727226ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #164 for non_future/non_fallible event' ended after running for 5.733501ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #165 for non_future/non_fallible event' ended after running for 5.739354ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #166 for non_future/non_fallible event' ended after running for 5.745734ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #167 for non_future/non_fallible event' ended after running for 5.752439ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #168 for non_future/non_fallible event' ended after running for 5.758723ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #169 for non_future/non_fallible event' ended after running for 5.764933ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #170 for non_future/non_fallible event' ended after running for 5.771703ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #171 for non_future/non_fallible event' ended after running for 5.778134ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #172 for non_future/non_fallible event' ended after running for 5.784177ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #173 for non_future/non_fallible event' ended after running for 5.790567ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #174 for non_future/non_fallible event' ended after running for 5.796666ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #175 for non_future/non_fallible event' ended after running for 5.797292ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #176 for non_future/non_fallible event' ended after running for 5.802524ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #177 for non_future/non_fallible event' ended after running for 5.808367ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #178 for non_future/non_fallible event' ended after running for 5.814672ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #179 for non_future/non_fallible event' ended after running for 5.82033ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #180 for non_future/non_fallible event' ended after running for 5.827261ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #181 for non_future/non_fallible event' ended after running for 5.834106ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #182 for non_future/non_fallible event' ended after running for 5.840727ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #183 for non_future/non_fallible event' ended after running for 5.829562ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #184 for non_future/non_fallible event' ended after running for 5.835555ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #185 for non_future/non_fallible event' ended after running for 5.845683ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #186 for non_future/non_fallible event' ended after running for 5.852874ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #187 for non_future/non_fallible event' ended after running for 5.858789ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #188 for non_future/non_fallible event' ended after running for 5.86582ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #189 for non_future/non_fallible event' ended after running for 5.872399ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #190 for non_future/non_fallible event' ended after running for 5.878794ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #191 for non_future/non_fallible event' ended after running for 5.88558ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #192 for non_future/non_fallible event' ended after running for 5.887965ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #193 for non_future/non_fallible event' ended after running for 5.893754ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #194 for non_future/non_fallible event' ended after running for 5.900509ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #195 for non_future/non_fallible event' ended after running for 5.906638ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #196 for non_future/non_fallible event' ended after running for 5.913384ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #197 for non_future/non_fallible event' ended after running for 5.920339ms -- stats: | ok: 1 events 2023-03-18T06:59:33.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #198 for non_future/non_fallible event' ended after running for 5.927341ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #199 for non_future/non_fallible event' ended after running for 5.937499ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #200 for non_future/non_fallible event' ended after running for 5.959274ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #201 for non_future/non_fallible event' ended after running for 5.978768ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #202 for non_future/non_fallible event' ended after running for 5.998423ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #203 for non_future/non_fallible event' ended after running for 6.023165ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #204 for non_future/non_fallible event' ended after running for 6.044048ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #205 for non_future/non_fallible event' ended after running for 6.08209ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #206 for non_future/non_fallible event' ended after running for 6.107444ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #207 for non_future/non_fallible event' ended after running for 6.127144ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #208 for non_future/non_fallible event' ended after running for 6.135031ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #209 for non_future/non_fallible event' ended after running for 6.139953ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #210 for non_future/non_fallible event' ended after running for 6.146368ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #211 for non_future/non_fallible event' ended after running for 6.061313ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #212 for non_future/non_fallible event' ended after running for 6.065758ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #213 for non_future/non_fallible event' ended after running for 6.071076ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #214 for non_future/non_fallible event' ended after running for 6.07717ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #215 for non_future/non_fallible event' ended after running for 6.083469ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #216 for non_future/non_fallible event' ended after running for 6.085498ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #217 for non_future/non_fallible event' ended after running for 6.081549ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #218 for non_future/non_fallible event' ended after running for 6.077625ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #219 for non_future/non_fallible event' ended after running for 6.073244ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #220 for non_future/non_fallible event' ended after running for 6.070905ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #221 for non_future/non_fallible event' ended after running for 6.065232ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #222 for non_future/non_fallible event' ended after running for 6.063763ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #223 for non_future/non_fallible event' ended after running for 6.063553ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #224 for non_future/non_fallible event' ended after running for 6.064665ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #225 for non_future/non_fallible event' ended after running for 6.064962ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #226 for non_future/non_fallible event' ended after running for 6.065598ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #227 for non_future/non_fallible event' ended after running for 6.064405ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #228 for non_future/non_fallible event' ended after running for 6.063527ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #229 for non_future/non_fallible event' ended after running for 6.055925ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #230 for non_future/non_fallible event' ended after running for 6.059714ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #231 for non_future/non_fallible event' ended after running for 6.066174ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #232 for non_future/non_fallible event' ended after running for 6.072604ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #233 for non_future/non_fallible event' ended after running for 6.079259ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #234 for non_future/non_fallible event' ended after running for 6.085934ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #235 for non_future/non_fallible event' ended after running for 6.09286ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #236 for non_future/non_fallible event' ended after running for 6.099465ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #237 for non_future/non_fallible event' ended after running for 6.106211ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #238 for non_future/non_fallible event' ended after running for 6.113276ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #239 for non_future/non_fallible event' ended after running for 6.122939ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #240 for non_future/non_fallible event' ended after running for 6.130973ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #241 for non_future/non_fallible event' ended after running for 6.137873ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #242 for non_future/non_fallible event' ended after running for 6.145221ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #243 for non_future/non_fallible event' ended after running for 6.148177ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #244 for non_future/non_fallible event' ended after running for 6.153184ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #245 for non_future/non_fallible event' ended after running for 6.159278ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #246 for non_future/non_fallible event' ended after running for 6.165832ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #247 for non_future/non_fallible event' ended after running for 6.172698ms -- stats: | ok: 1 events 2023-03-18T06:59:33.537Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #248 for non_future/non_fallible event' ended after running for 6.188639ms -- stats: | ok: 1 events 2023-03-18T06:59:33.538Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #249 for non_future/non_fallible event' ended after running for 6.209468ms -- stats: | ok: 1 events 2023-03-18T06:59:33.538Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #250 for non_future/non_fallible event' ended after running for 6.229203ms -- stats: | ok: 1 events 2023-03-18T06:59:33.538Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #251 for non_future/non_fallible event' ended after running for 6.250196ms -- stats: | ok: 1 events 2023-03-18T06:59:33.538Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #252 for non_future/non_fallible event' ended after running for 6.268799ms -- stats: | ok: 1 events 2023-03-18T06:59:33.538Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #253 for non_future/non_fallible event' ended after running for 6.286504ms -- stats: | ok: 1 events 2023-03-18T06:59:33.538Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #254 for non_future/non_fallible event' ended after running for 6.303909ms -- stats: | ok: 1 events 2023-03-18T06:59:33.538Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #255 for non_future/non_fallible event' ended after running for 6.311998ms -- stats: | ok: 1 events 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #0 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #1 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #2 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #3 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #4 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #5 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #6 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #7 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #8 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #9 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #10 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #11 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #12 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #13 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #14 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #15 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #16 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #17 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #18 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #19 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #20 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #21 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #22 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #23 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #24 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #25 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #26 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #27 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #28 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #29 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #30 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #31 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #32 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #33 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #34 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #35 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #36 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #37 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #38 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #39 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #40 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #41 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #42 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #43 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #44 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #45 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #46 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #47 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #48 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #49 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #50 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #51 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #52 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #53 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #54 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.543Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #55 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.543Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #56 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.543Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #57 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.543Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #58 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.543Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #59 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.543Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #60 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #61 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #62 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #63 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #64 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #65 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #66 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #67 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #68 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #69 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #70 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #71 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #72 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #73 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #74 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #75 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #76 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #77 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #78 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #79 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #80 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #81 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #82 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #83 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #84 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #85 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #86 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #87 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #88 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #89 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #90 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #91 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #92 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #93 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #94 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #95 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #96 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #97 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #98 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #99 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #100 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #101 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #102 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #103 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #104 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #105 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #106 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #107 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #108 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #109 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #110 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #111 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #112 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #113 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #114 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #115 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #116 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #117 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #118 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #119 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #120 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #121 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #122 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #123 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #124 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #125 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #126 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #127 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #128 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #129 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #130 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #131 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #132 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #133 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #134 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #135 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #136 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #137 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #138 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #139 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #140 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #141 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #142 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #143 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #144 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #145 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #146 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #147 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #148 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #149 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #150 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #151 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #152 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #153 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #154 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #155 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #156 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #157 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #158 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #159 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #160 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #161 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #162 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #163 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #164 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #165 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #166 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #167 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #168 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #169 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #170 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #171 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #172 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #173 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #174 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #175 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #176 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #177 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #178 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #179 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #180 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #181 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #182 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #183 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #184 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #185 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #186 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #187 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #188 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #189 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #190 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #191 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #192 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #193 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #194 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #195 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #196 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #197 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #198 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #199 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #200 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #201 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #202 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #203 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #204 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #205 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.546Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #206 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #207 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #208 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #209 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #210 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #211 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #212 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #213 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #214 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #215 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #216 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #217 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #218 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #219 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #220 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #221 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #222 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #223 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #224 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #225 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #226 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #227 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #228 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #229 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #230 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #231 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #232 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #233 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #234 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #235 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #236 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #237 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.547Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #238 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.548Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #239 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.548Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #240 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.548Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #241 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.548Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #242 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #243 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #244 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #245 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #246 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #247 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #248 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #249 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #250 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #251 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #252 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #253 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #254 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event: Pipeline #255 for future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #122 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.795287ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #123 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.717735ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #124 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.762749ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #125 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.810293ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #126 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.869513ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #127 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.924149ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #128 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.953411ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #129 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.980172ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #130 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.005816ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #131 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.034302ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #132 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.064826ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #133 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.096569ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #134 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.126177ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #135 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.15364ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #136 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.182426ms 2023-03-18T06:59:33.697Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #137 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.212585ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #138 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.244669ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #139 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.275916ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #140 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.3062ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #141 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.338058ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #142 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.369259ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #143 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.424577ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #144 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.458254ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #145 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.489446ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #146 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.520497ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #147 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.552244ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #148 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.588562ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #149 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.636768ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #150 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.669027ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #151 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.699958ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #152 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.732979ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #153 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.763324ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #154 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.791263ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #155 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.823511ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #156 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.854663ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #157 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.885734ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #158 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.916475ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #159 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.947696ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #160 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.979168ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #161 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.010541ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #162 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.04297ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #163 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.076391ms 2023-03-18T06:59:33.698Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #164 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.107834ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #165 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.138018ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #166 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.170167ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #167 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.214308ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #168 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.247379ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #169 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.279738ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #170 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.331948ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #171 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.36355ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #172 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.394341ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #173 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.425883ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #174 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.457ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #175 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.489033ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #176 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.285132ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #177 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.311056ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #178 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.340519ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #179 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.371054ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #180 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.401644ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #181 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.434008ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #182 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.465821ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #183 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.506169ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #184 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.541154ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #185 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.574215ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #186 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.608082ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #187 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.639179ms 2023-03-18T06:59:33.699Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #188 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.67054ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #189 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.699407ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #190 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.729942ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #191 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.761178ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #192 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.791528ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #193 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.822219ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #194 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.870715ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #195 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.904959ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #196 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.936621ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #197 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.96883ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #198 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.000663ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #199 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.032361ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #200 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.062309ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #201 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.106806ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #202 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.138163ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #203 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.170156ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #204 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.201418ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #205 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.231848ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #206 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.262363ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #207 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.292943ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #208 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.325343ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #209 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.358734ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #210 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.391033ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #211 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.4332ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #212 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.466952ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #213 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.500644ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #214 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.531175ms 2023-03-18T06:59:33.700Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #215 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.56183ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #216 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.593192ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #217 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.63593ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #218 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.668239ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #219 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.699365ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #220 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.731665ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #221 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.788575ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #222 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.822207ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #223 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.85387ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #224 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.885919ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #225 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.917536ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #226 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.947911ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #227 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.979713ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #228 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.010263ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #229 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.04119ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #230 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.072291ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #231 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.115891ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #232 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.149528ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #233 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.182864ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #234 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.214256ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #235 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.244671ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #236 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.275677ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #237 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.292456ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #6 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.906879ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #238 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.215305ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #239 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.237792ms 2023-03-18T06:59:33.701Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #240 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.269485ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #241 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.302771ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #242 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.33519ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #243 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.366642ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #244 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.397518ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #245 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.235242ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #246 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.279755ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #247 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.313462ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #248 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.345154ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #249 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.377007ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #250 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.407853ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #251 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.440413ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #252 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.471599ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #253 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.502726ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #254 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.535741ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #255 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.567159ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #0 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.598089ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #1 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.630599ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #2 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.676715ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #3 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.709856ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #4 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.7424ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #5 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.771332ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #7 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.798324ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #8 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.830187ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #9 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.861679ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #10 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.891808ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #11 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.923947ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #12 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.955519ms 2023-03-18T06:59:33.702Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #13 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.987112ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #14 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.017487ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #15 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.049625ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #16 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.080235ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #17 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.112254ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #18 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.143741ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #19 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.193485ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #20 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.237751ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #21 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.271589ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #22 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.302235ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #23 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.3352ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #24 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.365209ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #25 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.396536ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #26 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.427898ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #27 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.460412ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #28 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.490176ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #29 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.521688ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #30 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.554203ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #31 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.596059ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #32 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.628488ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #33 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.660326ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #34 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.692244ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #35 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.723606ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #36 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.755168ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #37 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.786816ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #43 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.863557ms 2023-03-18T06:59:33.703Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #44 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.893671ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #45 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.922582ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #46 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.953027ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #47 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.984094ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #48 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.014528ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #49 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.045379ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #50 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.085446ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #51 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.119184ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #52 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.15058ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #53 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.18295ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #54 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.217023ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #55 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.24839ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #56 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.292285ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #57 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.327847ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #58 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.358237ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #59 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.388576ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #60 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.419472ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #61 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.450613ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #62 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.490245ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #63 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.522844ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #64 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.554467ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #65 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.586801ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #66 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.616785ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #67 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.647876ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #68 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.680446ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #69 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.712164ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #70 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.714759ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #71 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.741015ms 2023-03-18T06:59:33.704Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #72 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.770668ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #73 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.801378ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #74 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.830796ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #75 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.874366ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #76 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.906374ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #77 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.939024ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #78 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.986267ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #79 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.017023ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #80 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.040527ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #81 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.055847ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #82 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.071222ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #83 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.086166ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #84 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.100875ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #85 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.115614ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #86 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.129641ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #87 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.1446ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #88 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.159645ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #89 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.173898ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #90 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.188391ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #91 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.202864ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #92 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.217478ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #93 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.232442ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #94 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.24701ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #95 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.263488ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #96 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.293076ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #97 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.324067ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #98 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.351219ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #99 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.376678ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #100 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.405589ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #101 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.432926ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #102 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.460725ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #103 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.490013ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #104 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.539657ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #105 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.556716ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #106 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.572081ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #107 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.587396ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #108 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.602315ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #109 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.616919ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #110 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.631778ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #111 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.641295ms 2023-03-18T06:59:33.705Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #112 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.65644ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #113 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.671313ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #114 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.686072ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #115 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.707426ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #116 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.723127ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #117 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.738277ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #118 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.752871ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #119 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.768351ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #120 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.783521ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #121 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.798194ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #38 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.134616ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #39 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.154617ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #40 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.169942ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #41 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.184896ms 2023-03-18T06:59:33.706Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #42 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.199956ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #122 for future & fallible event' TIMED OUT after 150.874894ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #123 for future & fallible event' TIMED OUT after 150.90546ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #124 for future & fallible event' TIMED OUT after 150.899842ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #125 for future & fallible event' TIMED OUT after 150.886186ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #126 for future & fallible event' TIMED OUT after 150.871893ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #127 for future & fallible event' TIMED OUT after 150.874875ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #128 for future & fallible event' TIMED OUT after 150.871317ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #129 for future & fallible event' TIMED OUT after 150.867563ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #130 for future & fallible event' TIMED OUT after 150.860562ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #131 for future & fallible event' TIMED OUT after 150.850764ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #132 for future & fallible event' TIMED OUT after 150.843077ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #133 for future & fallible event' TIMED OUT after 150.837288ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #134 for future & fallible event' TIMED OUT after 150.832492ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #135 for future & fallible event' TIMED OUT after 150.826985ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #136 for future & fallible event' TIMED OUT after 150.818475ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #137 for future & fallible event' TIMED OUT after 150.807921ms 2023-03-18T06:59:33.848Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #138 for future & fallible event' TIMED OUT after 150.801471ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #139 for future & fallible event' TIMED OUT after 151.930085ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #140 for future & fallible event' TIMED OUT after 151.953213ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #141 for future & fallible event' TIMED OUT after 151.950161ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #142 for future & fallible event' TIMED OUT after 151.920989ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #143 for future & fallible event' TIMED OUT after 151.910936ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #144 for future & fallible event' TIMED OUT after 151.925439ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #145 for future & fallible event' TIMED OUT after 151.920823ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #146 for future & fallible event' TIMED OUT after 151.914675ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #147 for future & fallible event' TIMED OUT after 151.908711ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #148 for future & fallible event' TIMED OUT after 151.880266ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #149 for future & fallible event' TIMED OUT after 151.873445ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #150 for future & fallible event' TIMED OUT after 151.867156ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #151 for future & fallible event' TIMED OUT after 151.8649ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #152 for future & fallible event' TIMED OUT after 151.857814ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #153 for future & fallible event' TIMED OUT after 151.853905ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #154 for future & fallible event' TIMED OUT after 151.848513ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #155 for future & fallible event' TIMED OUT after 151.842198ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #156 for future & fallible event' TIMED OUT after 151.835959ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #157 for future & fallible event' TIMED OUT after 151.829028ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #158 for future & fallible event' TIMED OUT after 151.822353ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #159 for future & fallible event' TIMED OUT after 151.81458ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #160 for future & fallible event' TIMED OUT after 151.807178ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #161 for future & fallible event' TIMED OUT after 151.801144ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #162 for future & fallible event' TIMED OUT after 151.793341ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #163 for future & fallible event' TIMED OUT after 151.787017ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #164 for future & fallible event' TIMED OUT after 151.781715ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #165 for future & fallible event' TIMED OUT after 151.775726ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #166 for future & fallible event' TIMED OUT after 151.821917ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #167 for future & fallible event' TIMED OUT after 151.823806ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #168 for future & fallible event' TIMED OUT after 151.816008ms 2023-03-18T06:59:33.850Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #169 for future & fallible event' TIMED OUT after 151.789818ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #170 for future & fallible event' TIMED OUT after 151.781805ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #171 for future & fallible event' TIMED OUT after 151.776543ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #172 for future & fallible event' TIMED OUT after 151.770684ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #173 for future & fallible event' TIMED OUT after 151.767683ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #174 for future & fallible event' TIMED OUT after 151.759198ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #175 for future & fallible event' TIMED OUT after 151.754192ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #176 for future & fallible event' TIMED OUT after 151.611629ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #177 for future & fallible event' TIMED OUT after 151.608046ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #178 for future & fallible event' TIMED OUT after 151.600334ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #179 for future & fallible event' TIMED OUT after 151.594355ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #180 for future & fallible event' TIMED OUT after 151.587785ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #181 for future & fallible event' TIMED OUT after 151.579937ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #182 for future & fallible event' TIMED OUT after 151.569974ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #183 for future & fallible event' TIMED OUT after 151.555461ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #184 for future & fallible event' TIMED OUT after 151.547587ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #185 for future & fallible event' TIMED OUT after 151.54023ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #186 for future & fallible event' TIMED OUT after 151.534628ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #187 for future & fallible event' TIMED OUT after 151.529571ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #188 for future & fallible event' TIMED OUT after 151.528198ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #189 for future & fallible event' TIMED OUT after 151.524299ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #190 for future & fallible event' TIMED OUT after 151.639764ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #191 for future & fallible event' TIMED OUT after 151.637324ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #192 for future & fallible event' TIMED OUT after 151.63156ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #193 for future & fallible event' TIMED OUT after 151.60998ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #194 for future & fallible event' TIMED OUT after 151.599792ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #195 for future & fallible event' TIMED OUT after 151.594039ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #196 for future & fallible event' TIMED OUT after 151.589173ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #197 for future & fallible event' TIMED OUT after 151.581941ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #198 for future & fallible event' TIMED OUT after 151.575276ms 2023-03-18T06:59:33.851Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #199 for future & fallible event' TIMED OUT after 151.569187ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #200 for future & fallible event' TIMED OUT after 151.550329ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #201 for future & fallible event' TIMED OUT after 151.54423ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #202 for future & fallible event' TIMED OUT after 151.537485ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #203 for future & fallible event' TIMED OUT after 151.53328ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #204 for future & fallible event' TIMED OUT after 151.525988ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #205 for future & fallible event' TIMED OUT after 151.52468ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #206 for future & fallible event' TIMED OUT after 151.545102ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #207 for future & fallible event' TIMED OUT after 151.543042ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #208 for future & fallible event' TIMED OUT after 151.535134ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #209 for future & fallible event' TIMED OUT after 151.528709ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #210 for future & fallible event' TIMED OUT after 151.511294ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #211 for future & fallible event' TIMED OUT after 151.504083ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #212 for future & fallible event' TIMED OUT after 151.495964ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #213 for future & fallible event' TIMED OUT after 151.490236ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #214 for future & fallible event' TIMED OUT after 151.486011ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #215 for future & fallible event' TIMED OUT after 151.481446ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #216 for future & fallible event' TIMED OUT after 151.466702ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #217 for future & fallible event' TIMED OUT after 151.512703ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #218 for future & fallible event' TIMED OUT after 151.51369ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #219 for future & fallible event' TIMED OUT after 151.507055ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #220 for future & fallible event' TIMED OUT after 151.479557ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #221 for future & fallible event' TIMED OUT after 151.46779ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #222 for future & fallible event' TIMED OUT after 151.459651ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #223 for future & fallible event' TIMED OUT after 151.451312ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #224 for future & fallible event' TIMED OUT after 151.445178ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #225 for future & fallible event' TIMED OUT after 151.439269ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #226 for future & fallible event' TIMED OUT after 151.434162ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #227 for future & fallible event' TIMED OUT after 151.429086ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #228 for future & fallible event' TIMED OUT after 151.423287ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #229 for future & fallible event' TIMED OUT after 151.417148ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #230 for future & fallible event' TIMED OUT after 151.400992ms 2023-03-18T06:59:33.852Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #231 for future & fallible event' TIMED OUT after 151.391996ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #232 for future & fallible event' TIMED OUT after 151.38516ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #233 for future & fallible event' TIMED OUT after 151.378785ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #234 for future & fallible event' TIMED OUT after 151.374861ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #235 for future & fallible event' TIMED OUT after 151.369589ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #236 for future & fallible event' TIMED OUT after 151.364262ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #237 for future & fallible event' TIMED OUT after 151.349954ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #6 for future & fallible event' TIMED OUT after 151.29783ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #238 for future & fallible event' TIMED OUT after 151.296943ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #239 for future & fallible event' TIMED OUT after 151.290658ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #240 for future & fallible event' TIMED OUT after 151.284208ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #241 for future & fallible event' TIMED OUT after 151.278596ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #242 for future & fallible event' TIMED OUT after 151.395569ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #243 for future & fallible event' TIMED OUT after 151.392998ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #244 for future & fallible event' TIMED OUT after 151.390131ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #245 for future & fallible event' TIMED OUT after 151.368707ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #246 for future & fallible event' TIMED OUT after 151.360488ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #247 for future & fallible event' TIMED OUT after 151.354049ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #248 for future & fallible event' TIMED OUT after 151.349303ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #249 for future & fallible event' TIMED OUT after 151.344366ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #250 for future & fallible event' TIMED OUT after 151.339851ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #251 for future & fallible event' TIMED OUT after 151.336353ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #252 for future & fallible event' TIMED OUT after 151.330941ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #253 for future & fallible event' TIMED OUT after 151.325132ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #254 for future & fallible event' TIMED OUT after 151.321053ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #255 for future & fallible event' TIMED OUT after 151.315064ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #0 for future & fallible event' TIMED OUT after 151.308644ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #1 for future & fallible event' TIMED OUT after 151.289526ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #2 for future & fallible event' TIMED OUT after 151.28264ms 2023-03-18T06:59:33.853Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #3 for future & fallible event' TIMED OUT after 151.273614ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #4 for future & fallible event' TIMED OUT after 151.26989ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #5 for future & fallible event' TIMED OUT after 151.266087ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #7 for future & fallible event' TIMED OUT after 151.260344ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #8 for future & fallible event' TIMED OUT after 151.254871ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #9 for future & fallible event' TIMED OUT after 151.248687ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #10 for future & fallible event' TIMED OUT after 151.239105ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #11 for future & fallible event' TIMED OUT after 151.247915ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #12 for future & fallible event' TIMED OUT after 151.243335ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #13 for future & fallible event' TIMED OUT after 151.23693ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #14 for future & fallible event' TIMED OUT after 151.23263ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #15 for future & fallible event' TIMED OUT after 151.273273ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #16 for future & fallible event' TIMED OUT after 151.273148ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #17 for future & fallible event' TIMED OUT after 151.265826ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #18 for future & fallible event' TIMED OUT after 151.243515ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #19 for future & fallible event' TIMED OUT after 151.223599ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #20 for future & fallible event' TIMED OUT after 151.215897ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #21 for future & fallible event' TIMED OUT after 151.211151ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #22 for future & fallible event' TIMED OUT after 151.205598ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #23 for future & fallible event' TIMED OUT after 151.20002ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #24 for future & fallible event' TIMED OUT after 151.193496ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #25 for future & fallible event' TIMED OUT after 151.189807ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #26 for future & fallible event' TIMED OUT after 151.18452ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #27 for future & fallible event' TIMED OUT after 151.18014ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #28 for future & fallible event' TIMED OUT after 151.174286ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #29 for future & fallible event' TIMED OUT after 151.168538ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #30 for future & fallible event' TIMED OUT after 151.151238ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #31 for future & fallible event' TIMED OUT after 151.144503ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #32 for future & fallible event' TIMED OUT after 151.136394ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #33 for future & fallible event' TIMED OUT after 151.129929ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #34 for future & fallible event' TIMED OUT after 151.123861ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #35 for future & fallible event' TIMED OUT after 151.118689ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #36 for future & fallible event' TIMED OUT after 151.113667ms 2023-03-18T06:59:33.854Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #37 for future & fallible event' TIMED OUT after 151.10824ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #43 for future & fallible event' TIMED OUT after 151.043491ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #44 for future & fallible event' TIMED OUT after 151.040113ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #45 for future & fallible event' TIMED OUT after 151.035428ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #61 for future & fallible event' TIMED OUT after 150.52395ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #62 for future & fallible event' TIMED OUT after 150.541585ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #63 for future & fallible event' TIMED OUT after 150.538854ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #64 for future & fallible event' TIMED OUT after 150.53258ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #65 for future & fallible event' TIMED OUT after 150.528329ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #66 for future & fallible event' TIMED OUT after 150.520737ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #67 for future & fallible event' TIMED OUT after 150.515736ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #68 for future & fallible event' TIMED OUT after 150.509922ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #69 for future & fallible event' TIMED OUT after 150.502811ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #70 for future & fallible event' TIMED OUT after 150.497544ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #71 for future & fallible event' TIMED OUT after 150.490017ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #72 for future & fallible event' TIMED OUT after 150.48273ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #73 for future & fallible event' TIMED OUT after 150.472912ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #46 for future & fallible event' TIMED OUT after 151.526234ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #47 for future & fallible event' TIMED OUT after 151.521447ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #48 for future & fallible event' TIMED OUT after 151.515825ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #49 for future & fallible event' TIMED OUT after 151.495643ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #50 for future & fallible event' TIMED OUT after 151.485931ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #51 for future & fallible event' TIMED OUT after 151.479772ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #52 for future & fallible event' TIMED OUT after 151.472851ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #53 for future & fallible event' TIMED OUT after 151.464362ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #54 for future & fallible event' TIMED OUT after 151.458253ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #55 for future & fallible event' TIMED OUT after 151.439495ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #56 for future & fallible event' TIMED OUT after 151.429366ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #57 for future & fallible event' TIMED OUT after 151.423859ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #58 for future & fallible event' TIMED OUT after 151.419629ms 2023-03-18T06:59:33.855Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #59 for future & fallible event' TIMED OUT after 151.413746ms 2023-03-18T06:59:33.856Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #60 for future & fallible event' TIMED OUT after 151.407311ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #74 for future & fallible event' TIMED OUT after 152.045865ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #75 for future & fallible event' TIMED OUT after 152.061116ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #76 for future & fallible event' TIMED OUT after 152.058254ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #77 for future & fallible event' TIMED OUT after 152.036469ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #78 for future & fallible event' TIMED OUT after 152.031628ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #79 for future & fallible event' TIMED OUT after 152.030385ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #80 for future & fallible event' TIMED OUT after 152.0371ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #81 for future & fallible event' TIMED OUT after 152.046522ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #82 for future & fallible event' TIMED OUT after 152.0567ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #83 for future & fallible event' TIMED OUT after 152.067415ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #84 for future & fallible event' TIMED OUT after 152.078921ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #85 for future & fallible event' TIMED OUT after 152.090458ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #86 for future & fallible event' TIMED OUT after 152.102471ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #87 for future & fallible event' TIMED OUT after 152.112634ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #88 for future & fallible event' TIMED OUT after 152.123709ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #89 for future & fallible event' TIMED OUT after 152.13526ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #90 for future & fallible event' TIMED OUT after 152.146065ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #91 for future & fallible event' TIMED OUT after 152.157802ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #92 for future & fallible event' TIMED OUT after 152.168958ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #93 for future & fallible event' TIMED OUT after 152.180224ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #94 for future & fallible event' TIMED OUT after 152.190041ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #95 for future & fallible event' TIMED OUT after 152.188032ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #96 for future & fallible event' TIMED OUT after 152.18073ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #97 for future & fallible event' TIMED OUT after 152.17878ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #98 for future & fallible event' TIMED OUT after 152.179267ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #99 for future & fallible event' TIMED OUT after 152.175573ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #100 for future & fallible event' TIMED OUT after 152.173974ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #101 for future & fallible event' TIMED OUT after 152.170992ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #102 for future & fallible event' TIMED OUT after 152.166933ms 2023-03-18T06:59:33.857Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #103 for future & fallible event' TIMED OUT after 152.16356ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #104 for future & fallible event' TIMED OUT after 152.147013ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #105 for future & fallible event' TIMED OUT after 152.156785ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #106 for future & fallible event' TIMED OUT after 152.166262ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #107 for future & fallible event' TIMED OUT after 152.177422ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #108 for future & fallible event' TIMED OUT after 152.188292ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #109 for future & fallible event' TIMED OUT after 152.199067ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #110 for future & fallible event' TIMED OUT after 152.226395ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #111 for future & fallible event' TIMED OUT after 152.240101ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #112 for future & fallible event' TIMED OUT after 152.250555ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #113 for future & fallible event' TIMED OUT after 152.262207ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #114 for future & fallible event' TIMED OUT after 152.264908ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #115 for future & fallible event' TIMED OUT after 152.275081ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #116 for future & fallible event' TIMED OUT after 152.285806ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #117 for future & fallible event' TIMED OUT after 152.295769ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #118 for future & fallible event' TIMED OUT after 152.30495ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #119 for future & fallible event' TIMED OUT after 152.314617ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #120 for future & fallible event' TIMED OUT after 152.326639ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #121 for future & fallible event' TIMED OUT after 152.314913ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #38 for future & fallible event' TIMED OUT after 152.317017ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #39 for future & fallible event' TIMED OUT after 152.325858ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #40 for future & fallible event' TIMED OUT after 152.335675ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #41 for future & fallible event' TIMED OUT after 152.345718ms 2023-03-18T06:59:33.858Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #42 for future & fallible event' TIMED OUT after 152.3573ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #122 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.788542ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #123 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.869131ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #124 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.91903ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #125 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.962124ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #126 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.022097ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #127 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.093085ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #128 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.12595ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #129 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.153393ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #130 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.181593ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #131 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.21104ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #132 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.24139ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #133 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.272597ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #134 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.305071ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #135 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.337215ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #136 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.366021ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #137 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.393243ms 2023-03-18T06:59:34.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #138 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.420526ms 2023-03-18T06:59:34.002Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #139 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.239507ms 2023-03-18T06:59:34.002Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #140 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.188877ms 2023-03-18T06:59:34.002Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #141 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.220289ms 2023-03-18T06:59:34.002Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #142 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.251882ms 2023-03-18T06:59:34.002Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #143 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.281219ms 2023-03-18T06:59:34.002Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #144 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.311087ms 2023-03-18T06:59:34.002Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #145 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.341788ms 2023-03-18T06:59:34.002Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #146 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.37307ms 2023-03-18T06:59:34.002Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #147 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.404682ms 2023-03-18T06:59:34.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #148 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.58743ms 2023-03-18T06:59:34.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #149 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.644521ms 2023-03-18T06:59:34.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #150 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.678404ms 2023-03-18T06:59:34.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #151 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.70937ms 2023-03-18T06:59:34.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #152 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.739343ms 2023-03-18T06:59:34.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #153 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.771974ms 2023-03-18T06:59:34.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #154 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.802619ms 2023-03-18T06:59:34.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #155 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.830573ms 2023-03-18T06:59:34.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #156 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.860376ms 2023-03-18T06:59:34.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #157 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.891066ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #158 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.920905ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #159 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.952999ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #160 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.982902ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #161 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.014279ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #162 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.0455ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #163 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.101399ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #164 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.135963ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #165 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.16736ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #166 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.199228ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #167 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.231668ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #168 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.261772ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #169 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.311009ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #170 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.344016ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #171 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.375422ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #172 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.308008ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #173 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.333426ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #174 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.364106ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #175 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.394631ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #176 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.42666ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #177 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.459811ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #178 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.493398ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #179 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.52695ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #180 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.559815ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #181 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.590877ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #182 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.622424ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #183 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.65321ms 2023-03-18T06:59:34.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #184 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.68382ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #185 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.716109ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #186 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.759659ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #187 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.792609ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #188 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.8259ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #189 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.859287ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #190 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.908776ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #191 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.941326ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #192 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.971435ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #193 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.00221ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #194 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.03282ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #195 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.064628ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #196 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.09602ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #197 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.138368ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #198 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.169865ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #199 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.202329ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #200 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.233586ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #201 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.265855ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #202 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.149208ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #203 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.173088ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #204 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.202982ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #205 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.232871ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #206 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.262674ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #207 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.294712ms 2023-03-18T06:59:34.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #208 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.325493ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #209 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.362002ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #210 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.393955ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #211 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.436893ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #212 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.469323ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #213 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.502394ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #214 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.550419ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #215 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.584667ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #216 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.617553ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #217 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.663142ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #218 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.695521ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #219 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.727575ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #220 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.760069ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #221 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.791271ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #222 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.822583ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #223 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.854266ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #224 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.894839ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #225 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.926982ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #226 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.957929ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #227 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.987622ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #228 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.017325ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #229 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.047434ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #230 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.077548ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #231 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.111656ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #232 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.143093ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #233 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.964179ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #234 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.99067ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #235 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.021876ms 2023-03-18T06:59:34.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #236 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.053028ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #237 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.083097ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #6 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.113632ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #238 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.14555ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #239 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.176622ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #240 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.20869ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #241 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.268622ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #242 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.301999ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #243 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.326355ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #244 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.356479ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #245 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.381261ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #246 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.408859ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #247 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.439023ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #248 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.470656ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #249 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.500529ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #250 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.530087ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #251 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.560968ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #252 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.592991ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #253 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.624689ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #254 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.668174ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #255 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.701134ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #0 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.733263ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #1 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.765412ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #2 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.79709ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #3 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.82786ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #4 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.859222ms 2023-03-18T06:59:34.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #5 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.890749ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #7 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.869516ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #8 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.908976ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #9 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.938965ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #10 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.970026ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #11 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.001533ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #12 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.051538ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #13 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.085486ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #14 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.116076ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #15 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.146601ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #16 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.179161ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #17 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.210919ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #18 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.20918ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #19 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.23544ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #20 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.265048ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #21 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.293423ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #22 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.323236ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #23 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.346715ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #24 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.387268ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #25 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.418234ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #26 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.448058ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #27 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.477646ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #28 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.50811ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #29 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.538385ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #30 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.571386ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #31 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.603354ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #32 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.633699ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #33 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.665191ms 2023-03-18T06:59:34.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #34 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.695816ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #35 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.726606ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #36 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.768934ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #37 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.800917ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #43 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.831237ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #44 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.705554ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #45 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.749124ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #61 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.782631ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #62 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.814735ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #63 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.84535ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #64 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.87586ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #65 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.906751ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #66 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.938098ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #67 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.96942ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #68 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.000501ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #69 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.042548ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #70 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.075618ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #71 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.10684ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #72 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.137716ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #73 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.16998ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #46 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.201422ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #47 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.233807ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #48 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.266566ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #49 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.297718ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #50 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.329756ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #51 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.361083ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #52 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.401235ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #53 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.434622ms 2023-03-18T06:59:34.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #54 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.466766ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #55 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.498789ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #56 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.530747ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #57 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.561859ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #58 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.593797ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #59 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.625485ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #60 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.718002ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #74 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.457091ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #75 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.484574ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #76 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.515445ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #77 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.546922ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #78 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.580354ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #79 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.611756ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #80 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.642742ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #81 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.673558ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #82 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.705531ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #83 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.747567ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #84 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.779516ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #85 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.811073ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #86 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.841558ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #87 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.87052ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #88 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.902828ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #89 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.934251ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #90 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.965818ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #91 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.996368ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #92 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.028001ms 2023-03-18T06:59:34.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #93 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.058826ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #94 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.090569ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #95 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.125294ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #96 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.142949ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #97 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.167942ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #98 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.197374ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #99 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.225749ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #100 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.275333ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #101 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.30918ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #102 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.340778ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #103 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.372752ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #104 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.403722ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #105 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.434483ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #106 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.211087ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #107 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.236149ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #108 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.267216ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #109 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.299374ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #110 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.330676ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #111 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.361216ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #112 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.390468ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #113 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.41968ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #114 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.439982ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #115 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.453337ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #116 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.468171ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #117 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.482665ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #118 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.4981ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #119 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.513095ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #120 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.527733ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #121 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.542001ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #38 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.556494ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #39 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.571378ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #40 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.585676ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #41 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.599743ms 2023-03-18T06:59:34.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #42 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.614226ms 2023-03-18T06:59:34.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #122 for future & fallible event' TIMED OUT after 150.878994ms 2023-03-18T06:59:34.152Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #122 for future & fallible event' ended after running for 607.330212ms -- stats: | ok: 2 events; avg 100.798264ms - 3.29310/sec | time out: 2 events; avg 150.876939ms - 3.29310/sec | failed: 2 events; avg 51.791914ms - 3.29310/sec 2023-03-18T06:59:34.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #123 for future & fallible event' TIMED OUT after 150.976683ms 2023-03-18T06:59:34.152Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #123 for future & fallible event' ended after running for 607.381204ms -- stats: | ok: 2 events; avg 101.363465ms - 3.29282/sec | time out: 2 events; avg 150.941074ms - 3.29282/sec | failed: 2 events; avg 51.293433ms - 3.29282/sec 2023-03-18T06:59:34.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #124 for future & fallible event' TIMED OUT after 151.041266ms 2023-03-18T06:59:34.152Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #124 for future & fallible event' ended after running for 607.480126ms -- stats: | ok: 2 events; avg 101.340152ms - 3.29229/sec | time out: 2 events; avg 150.970548ms - 3.29229/sec | failed: 2 events; avg 51.340889ms - 3.29229/sec 2023-03-18T06:59:34.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #125 for future & fallible event' TIMED OUT after 151.107714ms 2023-03-18T06:59:34.152Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #125 for future & fallible event' ended after running for 607.567796ms -- stats: | ok: 2 events; avg 101.312026ms - 3.29181/sec | time out: 2 events; avg 150.996953ms - 3.29181/sec | failed: 2 events; avg 51.386207ms - 3.29181/sec 2023-03-18T06:59:34.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #126 for future & fallible event' TIMED OUT after 151.110199ms 2023-03-18T06:59:34.152Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #126 for future & fallible event' ended after running for 607.617601ms -- stats: | ok: 2 events; avg 101.285219ms - 3.29154/sec | time out: 2 events; avg 150.991037ms - 3.29154/sec | failed: 2 events; avg 51.445805ms - 3.29154/sec 2023-03-18T06:59:34.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #127 for future & fallible event' TIMED OUT after 151.126447ms 2023-03-18T06:59:34.152Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #127 for future & fallible event' ended after running for 607.663752ms -- stats: | ok: 2 events; avg 101.26745ms - 3.29129/sec | time out: 2 events; avg 151.000664ms - 3.29129/sec | failed: 2 events; avg 51.508617ms - 3.29129/sec 2023-03-18T06:59:34.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #128 for future & fallible event' TIMED OUT after 151.15413ms 2023-03-18T06:59:34.152Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #128 for future & fallible event' ended after running for 607.703062ms -- stats: | ok: 2 events; avg 101.239234ms - 3.29108/sec | time out: 2 events; avg 151.012719ms - 3.29108/sec | failed: 2 events; avg 51.539682ms - 3.29108/sec 2023-03-18T06:59:34.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #129 for future & fallible event' TIMED OUT after 151.178306ms 2023-03-18T06:59:34.152Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #129 for future & fallible event' ended after running for 607.717319ms -- stats: | ok: 2 events; avg 101.218469ms - 3.29100/sec | time out: 2 events; avg 151.022941ms - 3.29100/sec | failed: 2 events; avg 51.566783ms - 3.29100/sec 2023-03-18T06:59:34.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #130 for future & fallible event' TIMED OUT after 151.204961ms 2023-03-18T06:59:34.152Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #130 for future & fallible event' ended after running for 607.760629ms -- stats: | ok: 2 events; avg 101.200216ms - 3.29077/sec | time out: 2 events; avg 151.032761ms - 3.29077/sec | failed: 2 events; avg 51.593702ms - 3.29077/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #131 for future & fallible event' TIMED OUT after 151.237421ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #131 for future & fallible event' ended after running for 607.807943ms -- stats: | ok: 2 events; avg 101.181731ms - 3.29051/sec | time out: 2 events; avg 151.044101ms - 3.29051/sec | failed: 2 events; avg 51.622674ms - 3.29051/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #132 for future & fallible event' TIMED OUT after 151.266688ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #132 for future & fallible event' ended after running for 607.855908ms -- stats: | ok: 2 events; avg 101.163507ms - 3.29025/sec | time out: 2 events; avg 151.054889ms - 3.29025/sec | failed: 2 events; avg 51.653109ms - 3.29025/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #133 for future & fallible event' TIMED OUT after 151.297003ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #133 for future & fallible event' ended after running for 607.929496ms -- stats: | ok: 2 events; avg 101.144411ms - 3.28986/sec | time out: 2 events; avg 151.067138ms - 3.28986/sec | failed: 2 events; avg 51.684581ms - 3.28986/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #134 for future & fallible event' TIMED OUT after 151.353778ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #134 for future & fallible event' ended after running for 607.973547ms -- stats: | ok: 2 events; avg 101.126656ms - 3.28962/sec | time out: 2 events; avg 151.093125ms - 3.28962/sec | failed: 2 events; avg 51.715624ms - 3.28962/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #135 for future & fallible event' TIMED OUT after 151.381045ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #135 for future & fallible event' ended after running for 608.019282ms -- stats: | ok: 2 events; avg 101.109073ms - 3.28937/sec | time out: 2 events; avg 151.104018ms - 3.28937/sec | failed: 2 events; avg 51.74543ms - 3.28937/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #136 for future & fallible event' TIMED OUT after 151.410243ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #136 for future & fallible event' ended after running for 608.066496ms -- stats: | ok: 2 events; avg 101.091981ms - 3.28911/sec | time out: 2 events; avg 151.114359ms - 3.28911/sec | failed: 2 events; avg 51.774219ms - 3.28911/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #137 for future & fallible event' TIMED OUT after 151.444491ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #137 for future & fallible event' ended after running for 608.113063ms -- stats: | ok: 2 events; avg 101.07398ms - 3.28886/sec | time out: 2 events; avg 151.126206ms - 3.28886/sec | failed: 2 events; avg 51.802911ms - 3.28886/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #138 for future & fallible event' TIMED OUT after 151.476865ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #138 for future & fallible event' ended after running for 608.163292ms -- stats: | ok: 2 events; avg 101.055823ms - 3.28859/sec | time out: 2 events; avg 151.13917ms - 3.28859/sec | failed: 2 events; avg 51.832598ms - 3.28859/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #139 for future & fallible event' TIMED OUT after 151.509906ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #139 for future & fallible event' ended after running for 608.211473ms -- stats: | ok: 2 events; avg 101.056829ms - 3.28833/sec | time out: 2 events; avg 151.719987ms - 3.28833/sec | failed: 2 events; avg 51.257715ms - 3.28833/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #140 for future & fallible event' TIMED OUT after 151.383456ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #140 for future & fallible event' ended after running for 608.28645ms -- stats: | ok: 2 events; avg 101.661906ms - 3.28792/sec | time out: 2 events; avg 151.66834ms - 3.28792/sec | failed: 2 events; avg 50.747536ms - 3.28792/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #141 for future & fallible event' TIMED OUT after 151.417895ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #141 for future & fallible event' ended after running for 608.336591ms -- stats: | ok: 2 events; avg 101.649374ms - 3.28765/sec | time out: 2 events; avg 151.684016ms - 3.28765/sec | failed: 2 events; avg 50.779171ms - 3.28765/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #142 for future & fallible event' TIMED OUT after 151.449342ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #142 for future & fallible event' ended after running for 608.387362ms -- stats: | ok: 2 events; avg 101.630941ms - 3.28738/sec | time out: 2 events; avg 151.685163ms - 3.28738/sec | failed: 2 events; avg 50.810568ms - 3.28738/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #143 for future & fallible event' TIMED OUT after 151.482318ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #143 for future & fallible event' ended after running for 608.436389ms -- stats: | ok: 2 events; avg 101.601377ms - 3.28711/sec | time out: 2 events; avg 151.696622ms - 3.28711/sec | failed: 2 events; avg 50.852899ms - 3.28711/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #144 for future & fallible event' TIMED OUT after 151.515178ms 2023-03-18T06:59:34.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #144 for future & fallible event' ended after running for 608.488173ms -- stats: | ok: 2 events; avg 101.582363ms - 3.28683/sec | time out: 2 events; avg 151.720315ms - 3.28683/sec | failed: 2 events; avg 50.884672ms - 3.28683/sec 2023-03-18T06:59:34.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #145 for future & fallible event' TIMED OUT after 151.545217ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #145 for future & fallible event' ended after running for 608.535075ms -- stats: | ok: 2 events; avg 101.563275ms - 3.28658/sec | time out: 2 events; avg 151.733011ms - 3.28658/sec | failed: 2 events; avg 50.915617ms - 3.28658/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #146 for future & fallible event' TIMED OUT after 151.574218ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #146 for future & fallible event' ended after running for 608.583251ms -- stats: | ok: 2 events; avg 101.544388ms - 3.28632/sec | time out: 2 events; avg 151.744455ms - 3.28632/sec | failed: 2 events; avg 50.946787ms - 3.28632/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #147 for future & fallible event' TIMED OUT after 151.602719ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #147 for future & fallible event' ended after running for 608.633587ms -- stats: | ok: 2 events; avg 101.525918ms - 3.28605/sec | time out: 2 events; avg 151.75572ms - 3.28605/sec | failed: 2 events; avg 50.978459ms - 3.28605/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #148 for future & fallible event' TIMED OUT after 150.507627ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #148 for future & fallible event' ended after running for 608.737173ms -- stats: | ok: 2 events; avg 101.50709ms - 3.28549/sec | time out: 2 events; avg 151.193947ms - 3.28549/sec | failed: 2 events; avg 51.587999ms - 3.28549/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #149 for future & fallible event' TIMED OUT after 150.544532ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #149 for future & fallible event' ended after running for 608.79259ms -- stats: | ok: 2 events; avg 101.487786ms - 3.28519/sec | time out: 2 events; avg 151.208982ms - 3.28519/sec | failed: 2 events; avg 51.640645ms - 3.28519/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #150 for future & fallible event' TIMED OUT after 150.578715ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #150 for future & fallible event' ended after running for 608.845152ms -- stats: | ok: 2 events; avg 101.46828ms - 3.28491/sec | time out: 2 events; avg 151.222944ms - 3.28491/sec | failed: 2 events; avg 51.673718ms - 3.28491/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #151 for future & fallible event' TIMED OUT after 150.610588ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #151 for future & fallible event' ended after running for 608.893698ms -- stats: | ok: 2 events; avg 101.448327ms - 3.28465/sec | time out: 2 events; avg 151.237756ms - 3.28465/sec | failed: 2 events; avg 51.704664ms - 3.28465/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #152 for future & fallible event' TIMED OUT after 150.639154ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #152 for future & fallible event' ended after running for 608.940886ms -- stats: | ok: 2 events; avg 101.430476ms - 3.28439/sec | time out: 2 events; avg 151.248485ms - 3.28439/sec | failed: 2 events; avg 51.736161ms - 3.28439/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #153 for future & fallible event' TIMED OUT after 150.668256ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #153 for future & fallible event' ended after running for 608.988501ms -- stats: | ok: 2 events; avg 101.409495ms - 3.28413/sec | time out: 2 events; avg 151.261091ms - 3.28413/sec | failed: 2 events; avg 51.767647ms - 3.28413/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #154 for future & fallible event' TIMED OUT after 150.700725ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #154 for future & fallible event' ended after running for 609.033754ms -- stats: | ok: 2 events; avg 101.390094ms - 3.28389/sec | time out: 2 events; avg 151.274621ms - 3.28389/sec | failed: 2 events; avg 51.796943ms - 3.28389/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #155 for future & fallible event' TIMED OUT after 150.733159ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #155 for future & fallible event' ended after running for 609.082105ms -- stats: | ok: 2 events; avg 101.371437ms - 3.28363/sec | time out: 2 events; avg 151.287675ms - 3.28363/sec | failed: 2 events; avg 51.827043ms - 3.28363/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #156 for future & fallible event' TIMED OUT after 150.764476ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #156 for future & fallible event' ended after running for 609.131398ms -- stats: | ok: 2 events; avg 101.353303ms - 3.28336/sec | time out: 2 events; avg 151.300222ms - 3.28336/sec | failed: 2 events; avg 51.85752ms - 3.28336/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #157 for future & fallible event' TIMED OUT after 150.794796ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #157 for future & fallible event' ended after running for 609.177008ms -- stats: | ok: 2 events; avg 101.33411ms - 3.28312/sec | time out: 2 events; avg 151.311904ms - 3.28312/sec | failed: 2 events; avg 51.888399ms - 3.28312/sec 2023-03-18T06:59:34.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #158 for future & fallible event' TIMED OUT after 150.825977ms 2023-03-18T06:59:34.154Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #158 for future & fallible event' ended after running for 609.226982ms -- stats: | ok: 2 events; avg 101.315901ms - 3.28285/sec | time out: 2 events; avg 151.324168ms - 3.28285/sec | failed: 2 events; avg 51.918693ms - 3.28285/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #159 for future & fallible event' TIMED OUT after 151.990363ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #159 for future & fallible event' ended after running for 610.437799ms -- stats: | ok: 2 events; avg 101.297691ms - 3.27634/sec | time out: 2 events; avg 151.902467ms - 3.27634/sec | failed: 2 events; avg 51.950347ms - 3.27634/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #160 for future & fallible event' TIMED OUT after 152.077473ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #160 for future & fallible event' ended after running for 610.522849ms -- stats: | ok: 2 events; avg 101.278849ms - 3.27588/sec | time out: 2 events; avg 151.942328ms - 3.27588/sec | failed: 2 events; avg 51.981039ms - 3.27588/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #161 for future & fallible event' TIMED OUT after 152.115019ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #161 for future & fallible event' ended after running for 610.571906ms -- stats: | ok: 2 events; avg 101.252794ms - 3.27562/sec | time out: 2 events; avg 151.958078ms - 3.27562/sec | failed: 2 events; avg 52.01241ms - 3.27562/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #162 for future & fallible event' TIMED OUT after 152.12419ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #162 for future & fallible event' ended after running for 610.60554ms -- stats: | ok: 2 events; avg 101.225108ms - 3.27544/sec | time out: 2 events; avg 151.958764ms - 3.27544/sec | failed: 2 events; avg 52.044235ms - 3.27544/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #163 for future & fallible event' TIMED OUT after 152.155347ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #163 for future & fallible event' ended after running for 610.642474ms -- stats: | ok: 2 events; avg 101.200491ms - 3.27524/sec | time out: 2 events; avg 151.971191ms - 3.27524/sec | failed: 2 events; avg 52.088894ms - 3.27524/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #164 for future & fallible event' TIMED OUT after 152.185075ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #164 for future & fallible event' ended after running for 610.681704ms -- stats: | ok: 2 events; avg 101.174466ms - 3.27503/sec | time out: 2 events; avg 151.98338ms - 3.27503/sec | failed: 2 events; avg 52.1219ms - 3.27503/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #165 for future & fallible event' TIMED OUT after 152.215905ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #165 for future & fallible event' ended after running for 610.720854ms -- stats: | ok: 2 events; avg 101.148322ms - 3.27482/sec | time out: 2 events; avg 151.995808ms - 3.27482/sec | failed: 2 events; avg 52.152686ms - 3.27482/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #166 for future & fallible event' TIMED OUT after 152.242561ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #166 for future & fallible event' ended after running for 610.754271ms -- stats: | ok: 2 events; avg 101.088271ms - 3.27464/sec | time out: 2 events; avg 152.032241ms - 3.27464/sec | failed: 2 events; avg 52.184701ms - 3.27464/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #167 for future & fallible event' TIMED OUT after 152.269613ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #167 for future & fallible event' ended after running for 610.786264ms -- stats: | ok: 2 events; avg 101.062581ms - 3.27447/sec | time out: 2 events; avg 152.04671ms - 3.27447/sec | failed: 2 events; avg 52.222989ms - 3.27447/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #168 for future & fallible event' TIMED OUT after 152.281771ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #168 for future & fallible event' ended after running for 610.822156ms -- stats: | ok: 2 events; avg 101.037093ms - 3.27428/sec | time out: 2 events; avg 152.048886ms - 3.27428/sec | failed: 2 events; avg 52.254576ms - 3.27428/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #169 for future & fallible event' TIMED OUT after 152.31183ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #169 for future & fallible event' ended after running for 610.86086ms -- stats: | ok: 2 events; avg 101.016723ms - 3.27407/sec | time out: 2 events; avg 152.050823ms - 3.27407/sec | failed: 2 events; avg 52.295372ms - 3.27407/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #170 for future & fallible event' TIMED OUT after 152.341955ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #170 for future & fallible event' ended after running for 610.908519ms -- stats: | ok: 2 events; avg 100.996062ms - 3.27381/sec | time out: 2 events; avg 152.06188ms - 3.27381/sec | failed: 2 events; avg 52.337982ms - 3.27381/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #171 for future & fallible event' TIMED OUT after 152.374249ms 2023-03-18T06:59:34.156Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #171 for future & fallible event' ended after running for 610.953157ms -- stats: | ok: 2 events; avg 100.976005ms - 3.27357/sec | time out: 2 events; avg 152.075395ms - 3.27357/sec | failed: 2 events; avg 52.36949ms - 3.27357/sec 2023-03-18T06:59:34.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #172 for future & fallible event' TIMED OUT after 152.406032ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #172 for future & fallible event' ended after running for 611.002069ms -- stats: | ok: 2 events; avg 101.002939ms - 3.27331/sec | time out: 2 events; avg 152.088359ms - 3.27331/sec | failed: 2 events; avg 52.351177ms - 3.27331/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #173 for future & fallible event' TIMED OUT after 152.43588ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #173 for future & fallible event' ended after running for 611.049493ms -- stats: | ok: 2 events; avg 100.987688ms - 3.27306/sec | time out: 2 events; avg 152.101785ms - 3.27306/sec | failed: 2 events; avg 52.379653ms - 3.27306/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #174 for future & fallible event' TIMED OUT after 152.464405ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #174 for future & fallible event' ended after running for 611.096576ms -- stats: | ok: 2 events; avg 100.968972ms - 3.27281/sec | time out: 2 events; avg 152.111799ms - 3.27281/sec | failed: 2 events; avg 52.41055ms - 3.27281/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #175 for future & fallible event' TIMED OUT after 152.495041ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #175 for future & fallible event' ended after running for 611.165439ms -- stats: | ok: 2 events; avg 100.941539ms - 3.27244/sec | time out: 2 events; avg 152.124614ms - 3.27244/sec | failed: 2 events; avg 52.441832ms - 3.27244/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #176 for future & fallible event' TIMED OUT after 152.544404ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #176 for future & fallible event' ended after running for 611.216631ms -- stats: | ok: 2 events; avg 101.613179ms - 3.27216/sec | time out: 2 events; avg 152.078003ms - 3.27216/sec | failed: 2 events; avg 51.855896ms - 3.27216/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #177 for future & fallible event' TIMED OUT after 152.572528ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #177 for future & fallible event' ended after running for 611.266134ms -- stats: | ok: 2 events; avg 101.601243ms - 3.27190/sec | time out: 2 events; avg 152.090281ms - 3.27190/sec | failed: 2 events; avg 51.885433ms - 3.27190/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #178 for future & fallible event' TIMED OUT after 152.604332ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #178 for future & fallible event' ended after running for 611.317583ms -- stats: | ok: 2 events; avg 101.583384ms - 3.27162/sec | time out: 2 events; avg 152.102336ms - 3.27162/sec | failed: 2 events; avg 51.916961ms - 3.27162/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #179 for future & fallible event' TIMED OUT after 152.630832ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #179 for future & fallible event' ended after running for 611.365348ms -- stats: | ok: 2 events; avg 101.564586ms - 3.27137/sec | time out: 2 events; avg 152.112603ms - 3.27137/sec | failed: 2 events; avg 51.949002ms - 3.27137/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #180 for future & fallible event' TIMED OUT after 152.662184ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #180 for future & fallible event' ended after running for 611.415492ms -- stats: | ok: 2 events; avg 101.545647ms - 3.27110/sec | time out: 2 events; avg 152.124986ms - 3.27110/sec | failed: 2 events; avg 51.98073ms - 3.27110/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #181 for future & fallible event' TIMED OUT after 152.694128ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #181 for future & fallible event' ended after running for 611.463928ms -- stats: | ok: 2 events; avg 101.52714ms - 3.27084/sec | time out: 2 events; avg 152.137026ms - 3.27084/sec | failed: 2 events; avg 52.012444ms - 3.27084/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #182 for future & fallible event' TIMED OUT after 152.72371ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #182 for future & fallible event' ended after running for 611.515261ms -- stats: | ok: 2 events; avg 101.507619ms - 3.27056/sec | time out: 2 events; avg 152.146846ms - 3.27056/sec | failed: 2 events; avg 52.044123ms - 3.27056/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #183 for future & fallible event' TIMED OUT after 152.755739ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #183 for future & fallible event' ended after running for 611.524532ms -- stats: | ok: 2 events; avg 101.465285ms - 3.27051/sec | time out: 2 events; avg 152.155593ms - 3.27051/sec | failed: 2 events; avg 52.079689ms - 3.27051/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #184 for future & fallible event' TIMED OUT after 152.785286ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #184 for future & fallible event' ended after running for 611.567099ms -- stats: | ok: 2 events; avg 101.44604ms - 3.27029/sec | time out: 2 events; avg 152.166426ms - 3.27029/sec | failed: 2 events; avg 52.112486ms - 3.27029/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #185 for future & fallible event' TIMED OUT after 152.804145ms 2023-03-18T06:59:34.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #185 for future & fallible event' ended after running for 611.615977ms -- stats: | ok: 2 events; avg 101.427056ms - 3.27003/sec | time out: 2 events; avg 152.172178ms - 3.27003/sec | failed: 2 events; avg 52.145161ms - 3.27003/sec 2023-03-18T06:59:34.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #186 for future & fallible event' TIMED OUT after 152.880199ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #186 for future & fallible event' ended after running for 611.725268ms -- stats: | ok: 2 events; avg 101.408586ms - 3.26944/sec | time out: 2 events; avg 152.207404ms - 3.26944/sec | failed: 2 events; avg 52.183867ms - 3.26944/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #187 for future & fallible event' TIMED OUT after 152.92185ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #187 for future & fallible event' ended after running for 611.777222ms -- stats: | ok: 2 events; avg 101.387635ms - 3.26916/sec | time out: 2 events; avg 152.225703ms - 3.26916/sec | failed: 2 events; avg 52.215897ms - 3.26916/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #188 for future & fallible event' TIMED OUT after 152.947599ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #188 for future & fallible event' ended after running for 611.823412ms -- stats: | ok: 2 events; avg 101.368457ms - 3.26892/sec | time out: 2 events; avg 152.237892ms - 3.26892/sec | failed: 2 events; avg 52.248221ms - 3.26892/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #189 for future & fallible event' TIMED OUT after 152.958073ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #189 for future & fallible event' ended after running for 611.888006ms -- stats: | ok: 2 events; avg 101.350442ms - 3.26857/sec | time out: 2 events; avg 152.2412ms - 3.26857/sec | failed: 2 events; avg 52.279346ms - 3.26857/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #190 for future & fallible event' TIMED OUT after 153.003818ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #190 for future & fallible event' ended after running for 611.941173ms -- stats: | ok: 2 events; avg 101.270854ms - 3.26829/sec | time out: 2 events; avg 152.321786ms - 3.26829/sec | failed: 2 events; avg 52.319359ms - 3.26829/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #191 for future & fallible event' TIMED OUT after 153.038101ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #191 for future & fallible event' ended after running for 611.992691ms -- stats: | ok: 2 events; avg 101.253256ms - 3.26801/sec | time out: 2 events; avg 152.337715ms - 3.26801/sec | failed: 2 events; avg 52.351251ms - 3.26801/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #192 for future & fallible event' TIMED OUT after 153.067579ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #192 for future & fallible event' ended after running for 612.041633ms -- stats: | ok: 2 events; avg 101.234689ms - 3.26775/sec | time out: 2 events; avg 152.349561ms - 3.26775/sec | failed: 2 events; avg 52.381482ms - 3.26775/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #193 for future & fallible event' TIMED OUT after 153.095668ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #193 for future & fallible event' ended after running for 612.090415ms -- stats: | ok: 2 events; avg 101.217255ms - 3.26749/sec | time out: 2 events; avg 152.352825ms - 3.26749/sec | failed: 2 events; avg 52.412212ms - 3.26749/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #194 for future & fallible event' TIMED OUT after 153.125547ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #194 for future & fallible event' ended after running for 612.134386ms -- stats: | ok: 2 events; avg 101.19918ms - 3.26726/sec | time out: 2 events; avg 152.362674ms - 3.26726/sec | failed: 2 events; avg 52.451767ms - 3.26726/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #195 for future & fallible event' TIMED OUT after 153.129431ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #195 for future & fallible event' ended after running for 612.154853ms -- stats: | ok: 2 events; avg 101.180986ms - 3.26715/sec | time out: 2 events; avg 152.361721ms - 3.26715/sec | failed: 2 events; avg 52.484795ms - 3.26715/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #196 for future & fallible event' TIMED OUT after 153.118065ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #196 for future & fallible event' ended after running for 612.174929ms -- stats: | ok: 2 events; avg 101.16294ms - 3.26704/sec | time out: 2 events; avg 152.353615ms - 3.26704/sec | failed: 2 events; avg 52.516319ms - 3.26704/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #197 for future & fallible event' TIMED OUT after 153.116641ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #197 for future & fallible event' ended after running for 612.194519ms -- stats: | ok: 2 events; avg 101.145409ms - 3.26694/sec | time out: 2 events; avg 152.349293ms - 3.26694/sec | failed: 2 events; avg 52.553602ms - 3.26694/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #198 for future & fallible event' TIMED OUT after 153.113149ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #198 for future & fallible event' ended after running for 612.213618ms -- stats: | ok: 2 events; avg 101.12755ms - 3.26683/sec | time out: 2 events; avg 152.344227ms - 3.26683/sec | failed: 2 events; avg 52.585267ms - 3.26683/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #199 for future & fallible event' TIMED OUT after 153.112041ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #199 for future & fallible event' ended after running for 612.233002ms -- stats: | ok: 2 events; avg 101.109788ms - 3.26673/sec | time out: 2 events; avg 152.340621ms - 3.26673/sec | failed: 2 events; avg 52.617341ms - 3.26673/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #200 for future & fallible event' TIMED OUT after 153.109144ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #200 for future & fallible event' ended after running for 612.251705ms -- stats: | ok: 2 events; avg 101.091966ms - 3.26663/sec | time out: 2 events; avg 152.329743ms - 3.26663/sec | failed: 2 events; avg 52.647945ms - 3.26663/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #201 for future & fallible event' TIMED OUT after 153.114712ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #201 for future & fallible event' ended after running for 612.278803ms -- stats: | ok: 2 events; avg 101.074383ms - 3.26649/sec | time out: 2 events; avg 152.329475ms - 3.26649/sec | failed: 2 events; avg 52.686334ms - 3.26649/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #202 for future & fallible event' TIMED OUT after 152.975573ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #202 for future & fallible event' ended after running for 612.298372ms -- stats: | ok: 2 events; avg 101.695873ms - 3.26638/sec | time out: 2 events; avg 152.256534ms - 3.26638/sec | failed: 2 events; avg 52.143686ms - 3.26638/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #203 for future & fallible event' TIMED OUT after 152.976109ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #203 for future & fallible event' ended after running for 612.317781ms -- stats: | ok: 2 events; avg 101.685241ms - 3.26628/sec | time out: 2 events; avg 152.254701ms - 3.26628/sec | failed: 2 events; avg 52.171625ms - 3.26628/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #204 for future & fallible event' TIMED OUT after 152.974255ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #204 for future & fallible event' ended after running for 612.336921ms -- stats: | ok: 2 events; avg 101.476334ms - 3.26618/sec | time out: 2 events; avg 152.250126ms - 3.26618/sec | failed: 2 events; avg 52.202202ms - 3.26618/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #205 for future & fallible event' TIMED OUT after 152.979697ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #205 for future & fallible event' ended after running for 611.977952ms -- stats: | ok: 2 events; avg 101.421908ms - 3.26809/sec | time out: 2 events; avg 152.252197ms - 3.26809/sec | failed: 2 events; avg 52.232362ms - 3.26809/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #206 for future & fallible event' TIMED OUT after 153.010193ms 2023-03-18T06:59:34.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #206 for future & fallible event' ended after running for 611.991659ms -- stats: | ok: 2 events; avg 101.39288ms - 3.26802/sec | time out: 2 events; avg 152.277648ms - 3.26802/sec | failed: 2 events; avg 52.262519ms - 3.26802/sec 2023-03-18T06:59:34.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #207 for future & fallible event' TIMED OUT after 153.033671ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #207 for future & fallible event' ended after running for 612.016711ms -- stats: | ok: 2 events; avg 101.367213ms - 3.26788/sec | time out: 2 events; avg 152.288347ms - 3.26788/sec | failed: 2 events; avg 52.29383ms - 3.26788/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #208 for future & fallible event' TIMED OUT after 153.055406ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #208 for future & fallible event' ended after running for 612.044505ms -- stats: | ok: 2 events; avg 101.343095ms - 3.26774/sec | time out: 2 events; avg 152.295277ms - 3.26774/sec | failed: 2 events; avg 52.32542ms - 3.26774/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #209 for future & fallible event' TIMED OUT after 153.071849ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #209 for future & fallible event' ended after running for 612.078313ms -- stats: | ok: 2 events; avg 101.318628ms - 3.26756/sec | time out: 2 events; avg 152.300268ms - 3.26756/sec | failed: 2 events; avg 52.360367ms - 3.26756/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #210 for future & fallible event' TIMED OUT after 153.071613ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #210 for future & fallible event' ended after running for 612.087644ms -- stats: | ok: 2 events; avg 101.295322ms - 3.26751/sec | time out: 2 events; avg 152.291447ms - 3.26751/sec | failed: 2 events; avg 52.392494ms - 3.26751/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #211 for future & fallible event' TIMED OUT after 153.105817ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #211 for future & fallible event' ended after running for 612.136631ms -- stats: | ok: 2 events; avg 101.275042ms - 3.26724/sec | time out: 2 events; avg 152.304947ms - 3.26724/sec | failed: 2 events; avg 52.435048ms - 3.26724/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #212 for future & fallible event' TIMED OUT after 153.10747ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #212 for future & fallible event' ended after running for 612.156211ms -- stats: | ok: 2 events; avg 101.256825ms - 3.26714/sec | time out: 2 events; avg 152.301729ms - 3.26714/sec | failed: 2 events; avg 52.468136ms - 3.26714/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #213 for future & fallible event' TIMED OUT after 153.093378ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #213 for future & fallible event' ended after running for 612.180171ms -- stats: | ok: 2 events; avg 101.238459ms - 3.26701/sec | time out: 2 events; avg 152.291805ms - 3.26701/sec | failed: 2 events; avg 52.501518ms - 3.26701/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #214 for future & fallible event' TIMED OUT after 153.090832ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #214 for future & fallible event' ended after running for 612.200317ms -- stats: | ok: 2 events; avg 101.219103ms - 3.26690/sec | time out: 2 events; avg 152.288422ms - 3.26690/sec | failed: 2 events; avg 52.540798ms - 3.26690/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #215 for future & fallible event' TIMED OUT after 153.086913ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #215 for future & fallible event' ended after running for 612.219466ms -- stats: | ok: 2 events; avg 101.200745ms - 3.26680/sec | time out: 2 events; avg 152.284175ms - 3.26680/sec | failed: 2 events; avg 52.573249ms - 3.26680/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #216 for future & fallible event' TIMED OUT after 153.071468ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #216 for future & fallible event' ended after running for 612.237903ms -- stats: | ok: 2 events; avg 101.165235ms - 3.26670/sec | time out: 2 events; avg 152.269095ms - 3.26670/sec | failed: 2 events; avg 52.605372ms - 3.26670/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #217 for future & fallible event' TIMED OUT after 153.068ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #217 for future & fallible event' ended after running for 612.220374ms -- stats: | ok: 2 events; avg 101.115763ms - 3.26680/sec | time out: 2 events; avg 152.290344ms - 3.26680/sec | failed: 2 events; avg 52.649535ms - 3.26680/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #218 for future & fallible event' TIMED OUT after 153.06559ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #218 for future & fallible event' ended after running for 612.236139ms -- stats: | ok: 2 events; avg 101.096928ms - 3.26671/sec | time out: 2 events; avg 152.289629ms - 3.26671/sec | failed: 2 events; avg 52.681878ms - 3.26671/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #219 for future & fallible event' TIMED OUT after 153.063179ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #219 for future & fallible event' ended after running for 612.254065ms -- stats: | ok: 2 events; avg 101.077408ms - 3.26662/sec | time out: 2 events; avg 152.285114ms - 3.26662/sec | failed: 2 events; avg 52.713469ms - 3.26662/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #220 for future & fallible event' TIMED OUT after 153.06381ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #220 for future & fallible event' ended after running for 612.276221ms -- stats: | ok: 2 events; avg 101.059735ms - 3.26650/sec | time out: 2 events; avg 152.271688ms - 3.26650/sec | failed: 2 events; avg 52.745864ms - 3.26650/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #221 for future & fallible event' TIMED OUT after 153.062918ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #221 for future & fallible event' ended after running for 612.296238ms -- stats: | ok: 2 events; avg 101.039246ms - 3.26639/sec | time out: 2 events; avg 152.26534ms - 3.26639/sec | failed: 2 events; avg 52.789923ms - 3.26639/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #222 for future & fallible event' TIMED OUT after 153.059977ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #222 for future & fallible event' ended after running for 612.309849ms -- stats: | ok: 2 events; avg 101.022206ms - 3.26632/sec | time out: 2 events; avg 152.259827ms - 3.26632/sec | failed: 2 events; avg 52.822396ms - 3.26632/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #223 for future & fallible event' TIMED OUT after 153.049598ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #223 for future & fallible event' ended after running for 612.328481ms -- stats: | ok: 2 events; avg 101.004414ms - 3.26622/sec | time out: 2 events; avg 152.250454ms - 3.26622/sec | failed: 2 events; avg 52.854069ms - 3.26622/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #224 for future & fallible event' TIMED OUT after 153.04618ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #224 for future & fallible event' ended after running for 612.34717ms -- stats: | ok: 2 events; avg 100.987054ms - 3.26612/sec | time out: 2 events; avg 152.245671ms - 3.26612/sec | failed: 2 events; avg 52.890379ms - 3.26612/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #225 for future & fallible event' TIMED OUT after 153.045318ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #225 for future & fallible event' ended after running for 612.367531ms -- stats: | ok: 2 events; avg 100.9693ms - 3.26601/sec | time out: 2 events; avg 152.242288ms - 3.26601/sec | failed: 2 events; avg 52.92226ms - 3.26601/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #226 for future & fallible event' TIMED OUT after 153.046972ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #226 for future & fallible event' ended after running for 612.387566ms -- stats: | ok: 2 events; avg 100.950725ms - 3.26591/sec | time out: 2 events; avg 152.240574ms - 3.26591/sec | failed: 2 events; avg 52.952923ms - 3.26591/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #227 for future & fallible event' TIMED OUT after 153.05075ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #227 for future & fallible event' ended after running for 612.409407ms -- stats: | ok: 2 events; avg 100.932136ms - 3.26579/sec | time out: 2 events; avg 152.239919ms - 3.26579/sec | failed: 2 events; avg 52.983668ms - 3.26579/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #228 for future & fallible event' TIMED OUT after 153.051121ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #228 for future & fallible event' ended after running for 612.428897ms -- stats: | ok: 2 events; avg 100.913361ms - 3.26569/sec | time out: 2 events; avg 152.237207ms - 3.26569/sec | failed: 2 events; avg 53.013794ms - 3.26569/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #229 for future & fallible event' TIMED OUT after 153.06557ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #229 for future & fallible event' ended after running for 612.474226ms -- stats: | ok: 2 events; avg 100.895762ms - 3.26544/sec | time out: 2 events; avg 152.241349ms - 3.26544/sec | failed: 2 events; avg 53.044312ms - 3.26544/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #230 for future & fallible event' TIMED OUT after 153.086392ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #230 for future & fallible event' ended after running for 612.519925ms -- stats: | ok: 2 events; avg 100.878738ms - 3.26520/sec | time out: 2 events; avg 152.243704ms - 3.26520/sec | failed: 2 events; avg 53.074919ms - 3.26520/sec 2023-03-18T06:59:34.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #231 for future & fallible event' TIMED OUT after 153.112617ms 2023-03-18T06:59:34.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #231 for future & fallible event' ended after running for 612.568662ms -- stats: | ok: 2 events; avg 100.860767ms - 3.26494/sec | time out: 2 events; avg 152.252316ms - 3.26494/sec | failed: 2 events; avg 53.113773ms - 3.26494/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #232 for future & fallible event' TIMED OUT after 153.136898ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #232 for future & fallible event' ended after running for 612.609476ms -- stats: | ok: 2 events; avg 100.842446ms - 3.26472/sec | time out: 2 events; avg 152.261019ms - 3.26472/sec | failed: 2 events; avg 53.14631ms - 3.26472/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #233 for future & fallible event' TIMED OUT after 153.159059ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #233 for future & fallible event' ended after running for 612.655476ms -- stats: | ok: 2 events; avg 101.425797ms - 3.26448/sec | time out: 2 events; avg 152.268916ms - 3.26448/sec | failed: 2 events; avg 52.573521ms - 3.26448/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #234 for future & fallible event' TIMED OUT after 153.176304ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #234 for future & fallible event' ended after running for 612.68332ms -- stats: | ok: 2 events; avg 101.413175ms - 3.26433/sec | time out: 2 events; avg 152.275592ms - 3.26433/sec | failed: 2 events; avg 52.602462ms - 3.26433/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #235 for future & fallible event' TIMED OUT after 153.176755ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #235 for future & fallible event' ended after running for 612.724043ms -- stats: | ok: 2 events; avg 101.395383ms - 3.26411/sec | time out: 2 events; avg 152.273178ms - 3.26411/sec | failed: 2 events; avg 52.633274ms - 3.26411/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #236 for future & fallible event' TIMED OUT after 153.209705ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #236 for future & fallible event' ended after running for 612.757325ms -- stats: | ok: 2 events; avg 101.369068ms - 3.26393/sec | time out: 2 events; avg 152.286977ms - 3.26393/sec | failed: 2 events; avg 52.664351ms - 3.26393/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #237 for future & fallible event' TIMED OUT after 153.208999ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #237 for future & fallible event' ended after running for 612.760387ms -- stats: | ok: 2 events; avg 101.3484ms - 3.26392/sec | time out: 2 events; avg 152.279466ms - 3.26392/sec | failed: 2 events; avg 52.687779ms - 3.26392/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #6 for future & fallible event' TIMED OUT after 153.252047ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #6 for future & fallible event' ended after running for 618.037095ms -- stats: | ok: 2 events; avg 101.701364ms - 3.23605/sec | time out: 2 events; avg 152.274936ms - 3.23605/sec | failed: 2 events; avg 51.51026ms - 3.23605/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #238 for future & fallible event' TIMED OUT after 153.256282ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #238 for future & fallible event' ended after running for 612.861815ms -- stats: | ok: 2 events; avg 101.267278ms - 3.26338/sec | time out: 2 events; avg 152.276605ms - 3.26338/sec | failed: 2 events; avg 52.180428ms - 3.26338/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #239 for future & fallible event' TIMED OUT after 153.255334ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #239 for future & fallible event' ended after running for 611.559087ms -- stats: | ok: 2 events; avg 101.23077ms - 3.27033/sec | time out: 2 events; avg 152.272999ms - 3.27033/sec | failed: 2 events; avg 52.207209ms - 3.27033/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #240 for future & fallible event' TIMED OUT after 153.23158ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #240 for future & fallible event' ended after running for 611.546928ms -- stats: | ok: 2 events; avg 101.204455ms - 3.27039/sec | time out: 2 events; avg 152.25789ms - 3.27039/sec | failed: 2 events; avg 52.239086ms - 3.27039/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #241 for future & fallible event' TIMED OUT after 153.228428ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #241 for future & fallible event' ended after running for 611.552166ms -- stats: | ok: 2 events; avg 101.180807ms - 3.27037/sec | time out: 2 events; avg 152.253509ms - 3.27037/sec | failed: 2 events; avg 52.285697ms - 3.27037/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #242 for future & fallible event' TIMED OUT after 153.23391ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #242 for future & fallible event' ended after running for 611.56051ms -- stats: | ok: 2 events; avg 101.093106ms - 3.27032/sec | time out: 2 events; avg 152.314737ms - 3.27032/sec | failed: 2 events; avg 52.318595ms - 3.27032/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #243 for future & fallible event' TIMED OUT after 153.235359ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #243 for future & fallible event' ended after running for 611.565812ms -- stats: | ok: 2 events; avg 101.069972ms - 3.27029/sec | time out: 2 events; avg 152.314186ms - 3.27029/sec | failed: 2 events; avg 52.346498ms - 3.27029/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #244 for future & fallible event' TIMED OUT after 153.24028ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #244 for future & fallible event' ended after running for 611.552958ms -- stats: | ok: 2 events; avg 101.036258ms - 3.27036/sec | time out: 2 events; avg 152.315214ms - 3.27036/sec | failed: 2 events; avg 52.377ms - 3.27036/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #245 for future & fallible event' TIMED OUT after 153.243001ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #245 for future & fallible event' ended after running for 611.569681ms -- stats: | ok: 2 events; avg 101.612851ms - 3.27027/sec | time out: 2 events; avg 152.305856ms - 3.27027/sec | failed: 2 events; avg 51.808249ms - 3.27027/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #246 for future & fallible event' TIMED OUT after 153.243137ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #246 for future & fallible event' ended after running for 611.588012ms -- stats: | ok: 2 events; avg 101.597548ms - 3.27018/sec | time out: 2 events; avg 152.301818ms - 3.27018/sec | failed: 2 events; avg 51.844306ms - 3.27018/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #247 for future & fallible event' TIMED OUT after 153.243523ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #247 for future & fallible event' ended after running for 611.610595ms -- stats: | ok: 2 events; avg 101.578347ms - 3.27005/sec | time out: 2 events; avg 152.298778ms - 3.27005/sec | failed: 2 events; avg 51.876243ms - 3.27005/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #248 for future & fallible event' TIMED OUT after 153.244585ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #248 for future & fallible event' ended after running for 611.630746ms -- stats: | ok: 2 events; avg 101.559937ms - 3.26995/sec | time out: 2 events; avg 152.296931ms - 3.26995/sec | failed: 2 events; avg 51.907904ms - 3.26995/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #249 for future & fallible event' TIMED OUT after 153.250684ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #249 for future & fallible event' ended after running for 611.667089ms -- stats: | ok: 2 events; avg 101.541862ms - 3.26975/sec | time out: 2 events; avg 152.297527ms - 3.26975/sec | failed: 2 events; avg 51.938768ms - 3.26975/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #250 for future & fallible event' TIMED OUT after 153.277205ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #250 for future & fallible event' ended after running for 611.710128ms -- stats: | ok: 2 events; avg 101.522818ms - 3.26952/sec | time out: 2 events; avg 152.308524ms - 3.26952/sec | failed: 2 events; avg 51.968969ms - 3.26952/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #251 for future & fallible event' TIMED OUT after 153.297045ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #251 for future & fallible event' ended after running for 611.751517ms -- stats: | ok: 2 events; avg 101.503789ms - 3.26930/sec | time out: 2 events; avg 152.316689ms - 3.26930/sec | failed: 2 events; avg 52.000687ms - 3.26930/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #252 for future & fallible event' TIMED OUT after 153.323831ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #252 for future & fallible event' ended after running for 611.794156ms -- stats: | ok: 2 events; avg 101.48488ms - 3.26907/sec | time out: 2 events; avg 152.327389ms - 3.26907/sec | failed: 2 events; avg 52.032296ms - 3.26907/sec 2023-03-18T06:59:34.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #253 for future & fallible event' TIMED OUT after 153.316891ms 2023-03-18T06:59:34.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #253 for future & fallible event' ended after running for 611.782915ms -- stats: | ok: 2 events; avg 101.442426ms - 3.26913/sec | time out: 2 events; avg 152.321011ms - 3.26913/sec | failed: 2 events; avg 52.063707ms - 3.26913/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #254 for future & fallible event' TIMED OUT after 153.317527ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #254 for future & fallible event' ended after running for 611.789976ms -- stats: | ok: 2 events; avg 101.421654ms - 3.26910/sec | time out: 2 events; avg 152.319282ms - 3.26910/sec | failed: 2 events; avg 52.101959ms - 3.26910/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #255 for future & fallible event' TIMED OUT after 153.317673ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #255 for future & fallible event' ended after running for 611.807888ms -- stats: | ok: 2 events; avg 101.400152ms - 3.26900/sec | time out: 2 events; avg 152.316377ms - 3.26900/sec | failed: 2 events; avg 52.134149ms - 3.26900/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #0 for future & fallible event' TIMED OUT after 153.314325ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #0 for future & fallible event' ended after running for 618.890522ms -- stats: | ok: 2 events; avg 101.386495ms - 3.23159/sec | time out: 2 events; avg 152.311474ms - 3.23159/sec | failed: 2 events; avg 52.165676ms - 3.23159/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #1 for future & fallible event' TIMED OUT after 153.314159ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #1 for future & fallible event' ended after running for 618.879843ms -- stats: | ok: 2 events; avg 101.374745ms - 3.23165/sec | time out: 2 events; avg 152.301848ms - 3.23165/sec | failed: 2 events; avg 52.198008ms - 3.23165/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #2 for future & fallible event' TIMED OUT after 153.311829ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #2 for future & fallible event' ended after running for 618.895499ms -- stats: | ok: 2 events; avg 101.36237ms - 3.23156/sec | time out: 2 events; avg 152.297229ms - 3.23156/sec | failed: 2 events; avg 52.2369ms - 3.23156/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #3 for future & fallible event' TIMED OUT after 153.340921ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #3 for future & fallible event' ended after running for 618.951122ms -- stats: | ok: 2 events; avg 101.350941ms - 3.23127/sec | time out: 2 events; avg 152.307272ms - 3.23127/sec | failed: 2 events; avg 52.268859ms - 3.23127/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #4 for future & fallible event' TIMED OUT after 153.349345ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #4 for future & fallible event' ended after running for 618.979922ms -- stats: | ok: 2 events; avg 101.338193ms - 3.23112/sec | time out: 2 events; avg 152.309611ms - 3.23112/sec | failed: 2 events; avg 52.300811ms - 3.23112/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #5 for future & fallible event' TIMED OUT after 153.359724ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #5 for future & fallible event' ended after running for 619.011971ms -- stats: | ok: 2 events; avg 101.325341ms - 3.23096/sec | time out: 2 events; avg 152.312905ms - 3.23096/sec | failed: 2 events; avg 52.331038ms - 3.23096/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #7 for future & fallible event' TIMED OUT after 153.300378ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #7 for future & fallible event' ended after running for 619.030313ms -- stats: | ok: 2 events; avg 101.36839ms - 3.23086/sec | time out: 2 events; avg 152.28036ms - 3.23086/sec | failed: 2 events; avg 52.333921ms - 3.23086/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #8 for future & fallible event' TIMED OUT after 153.307579ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #8 for future & fallible event' ended after running for 619.060958ms -- stats: | ok: 2 events; avg 101.357847ms - 3.23070/sec | time out: 2 events; avg 152.281225ms - 3.23070/sec | failed: 2 events; avg 52.36958ms - 3.23070/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #9 for future & fallible event' TIMED OUT after 153.314776ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #9 for future & fallible event' ended after running for 619.093007ms -- stats: | ok: 2 events; avg 101.346515ms - 3.23053/sec | time out: 2 events; avg 152.281731ms - 3.23053/sec | failed: 2 events; avg 52.400321ms - 3.23053/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #10 for future & fallible event' TIMED OUT after 153.323606ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #10 for future & fallible event' ended after running for 619.125863ms -- stats: | ok: 2 events; avg 101.33446ms - 3.23036/sec | time out: 2 events; avg 152.281344ms - 3.23036/sec | failed: 2 events; avg 52.430917ms - 3.23036/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #11 for future & fallible event' TIMED OUT after 153.317282ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #11 for future & fallible event' ended after running for 619.160897ms -- stats: | ok: 2 events; avg 101.314232ms - 3.23018/sec | time out: 2 events; avg 152.282596ms - 3.23018/sec | failed: 2 events; avg 52.462742ms - 3.23018/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #12 for future & fallible event' TIMED OUT after 153.325626ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #12 for future & fallible event' ended after running for 619.195557ms -- stats: | ok: 2 events; avg 101.302117ms - 3.23000/sec | time out: 2 events; avg 152.284473ms - 3.23000/sec | failed: 2 events; avg 52.503526ms - 3.23000/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #13 for future & fallible event' TIMED OUT after 153.341467ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #13 for future & fallible event' ended after running for 619.234677ms -- stats: | ok: 2 events; avg 101.289533ms - 3.22979/sec | time out: 2 events; avg 152.289197ms - 3.22979/sec | failed: 2 events; avg 52.536301ms - 3.22979/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #14 for future & fallible event' TIMED OUT after 153.355595ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #14 for future & fallible event' ended after running for 619.274007ms -- stats: | ok: 2 events; avg 101.277016ms - 3.22959/sec | time out: 2 events; avg 152.294114ms - 3.22959/sec | failed: 2 events; avg 52.566782ms - 3.22959/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #15 for future & fallible event' TIMED OUT after 153.389773ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #15 for future & fallible event' ended after running for 619.340499ms -- stats: | ok: 2 events; avg 101.239115ms - 3.22924/sec | time out: 2 events; avg 152.331531ms - 3.22924/sec | failed: 2 events; avg 52.598111ms - 3.22924/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #16 for future & fallible event' TIMED OUT after 153.433403ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #16 for future & fallible event' ended after running for 619.414209ms -- stats: | ok: 2 events; avg 101.226822ms - 3.22886/sec | time out: 2 events; avg 152.353287ms - 3.22886/sec | failed: 2 events; avg 52.629698ms - 3.22886/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #17 for future & fallible event' TIMED OUT after 153.483588ms 2023-03-18T06:59:34.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #17 for future & fallible event' ended after running for 619.485983ms -- stats: | ok: 2 events; avg 101.214215ms - 3.22848/sec | time out: 2 events; avg 152.374715ms - 3.22848/sec | failed: 2 events; avg 52.66159ms - 3.22848/sec 2023-03-18T06:59:34.161Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #18 for future & fallible event' TIMED OUT after 153.530887ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #18 for future & fallible event' ended after running for 619.536219ms -- stats: | ok: 2 events; avg 101.201788ms - 3.22822/sec | time out: 2 events; avg 152.387202ms - 3.22822/sec | failed: 2 events; avg 52.676462ms - 3.22822/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #19 for future & fallible event' TIMED OUT after 153.546803ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #19 for future & fallible event' ended after running for 619.571389ms -- stats: | ok: 2 events; avg 101.20938ms - 3.22804/sec | time out: 2 events; avg 152.385205ms - 3.22804/sec | failed: 2 events; avg 52.714463ms - 3.22804/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #20 for future & fallible event' TIMED OUT after 153.559984ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #20 for future & fallible event' ended after running for 619.607432ms -- stats: | ok: 2 events; avg 101.197653ms - 3.22785/sec | time out: 2 events; avg 152.387947ms - 3.22785/sec | failed: 2 events; avg 52.7514ms - 3.22785/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #21 for future & fallible event' TIMED OUT after 153.571054ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #21 for future & fallible event' ended after running for 619.642933ms -- stats: | ok: 2 events; avg 101.185121ms - 3.22767/sec | time out: 2 events; avg 152.391106ms - 3.22767/sec | failed: 2 events; avg 52.782506ms - 3.22767/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #22 for future & fallible event' TIMED OUT after 153.584108ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #22 for future & fallible event' ended after running for 619.704244ms -- stats: | ok: 2 events; avg 101.173989ms - 3.22735/sec | time out: 2 events; avg 152.394861ms - 3.22735/sec | failed: 2 events; avg 52.812736ms - 3.22735/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #23 for future & fallible event' TIMED OUT after 153.618327ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #23 for future & fallible event' ended after running for 619.745358ms -- stats: | ok: 2 events; avg 101.16332ms - 3.22713/sec | time out: 2 events; avg 152.409166ms - 3.22713/sec | failed: 2 events; avg 52.840956ms - 3.22713/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #24 for future & fallible event' TIMED OUT after 153.631167ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #24 for future & fallible event' ended after running for 619.780925ms -- stats: | ok: 2 events; avg 101.153821ms - 3.22695/sec | time out: 2 events; avg 152.412325ms - 3.22695/sec | failed: 2 events; avg 52.876238ms - 3.22695/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #25 for future & fallible event' TIMED OUT after 153.642984ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #25 for future & fallible event' ended after running for 619.816266ms -- stats: | ok: 2 events; avg 101.141796ms - 3.22676/sec | time out: 2 events; avg 152.416393ms - 3.22676/sec | failed: 2 events; avg 52.907385ms - 3.22676/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #26 for future & fallible event' TIMED OUT after 153.658038ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #26 for future & fallible event' ended after running for 619.851712ms -- stats: | ok: 2 events; avg 101.129264ms - 3.22658/sec | time out: 2 events; avg 152.421266ms - 3.22658/sec | failed: 2 events; avg 52.937977ms - 3.22658/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #27 for future & fallible event' TIMED OUT after 153.674927ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #27 for future & fallible event' ended after running for 619.891263ms -- stats: | ok: 2 events; avg 101.116255ms - 3.22637/sec | time out: 2 events; avg 152.427539ms - 3.22637/sec | failed: 2 events; avg 52.969031ms - 3.22637/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #28 for future & fallible event' TIMED OUT after 153.688243ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #28 for future & fallible event' ended after running for 619.926995ms -- stats: | ok: 2 events; avg 101.103432ms - 3.22619/sec | time out: 2 events; avg 152.431265ms - 3.22619/sec | failed: 2 events; avg 52.999143ms - 3.22619/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #29 for future & fallible event' TIMED OUT after 153.70007ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #29 for future & fallible event' ended after running for 619.960377ms -- stats: | ok: 2 events; avg 101.091608ms - 3.22601/sec | time out: 2 events; avg 152.434304ms - 3.22601/sec | failed: 2 events; avg 53.030036ms - 3.22601/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #30 for future & fallible event' TIMED OUT after 153.70873ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #30 for future & fallible event' ended after running for 619.993648ms -- stats: | ok: 2 events; avg 101.079375ms - 3.22584/sec | time out: 2 events; avg 152.429983ms - 3.22584/sec | failed: 2 events; avg 53.062797ms - 3.22584/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #31 for future & fallible event' TIMED OUT after 153.720386ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #31 for future & fallible event' ended after running for 620.043422ms -- stats: | ok: 2 events; avg 101.067752ms - 3.22558/sec | time out: 2 events; avg 152.432442ms - 3.22558/sec | failed: 2 events; avg 53.099707ms - 3.22558/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #32 for future & fallible event' TIMED OUT after 153.762874ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #32 for future & fallible event' ended after running for 620.109308ms -- stats: | ok: 2 events; avg 101.054639ms - 3.22524/sec | time out: 2 events; avg 152.449638ms - 3.22524/sec | failed: 2 events; avg 53.131096ms - 3.22524/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #33 for future & fallible event' TIMED OUT after 153.806769ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #33 for future & fallible event' ended after running for 620.178592ms -- stats: | ok: 2 events; avg 101.041377ms - 3.22488/sec | time out: 2 events; avg 152.468354ms - 3.22488/sec | failed: 2 events; avg 53.162761ms - 3.22488/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #34 for future & fallible event' TIMED OUT after 153.857376ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #34 for future & fallible event' ended after running for 620.24346ms -- stats: | ok: 2 events; avg 101.029873ms - 3.22454/sec | time out: 2 events; avg 152.490616ms - 3.22454/sec | failed: 2 events; avg 53.194031ms - 3.22454/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #35 for future & fallible event' TIMED OUT after 153.872545ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #35 for future & fallible event' ended after running for 620.278356ms -- stats: | ok: 2 events; avg 101.016767ms - 3.22436/sec | time out: 2 events; avg 152.495623ms - 3.22436/sec | failed: 2 events; avg 53.225107ms - 3.22436/sec 2023-03-18T06:59:34.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #36 for future & fallible event' TIMED OUT after 153.884217ms 2023-03-18T06:59:34.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #36 for future & fallible event' ended after running for 620.314213ms -- stats: | ok: 2 events; avg 101.00428ms - 3.22417/sec | time out: 2 events; avg 152.498931ms - 3.22417/sec | failed: 2 events; avg 53.262055ms - 3.22417/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #37 for future & fallible event' TIMED OUT after 153.897858ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #37 for future & fallible event' ended after running for 620.350361ms -- stats: | ok: 2 events; avg 100.99192ms - 3.22398/sec | time out: 2 events; avg 152.503043ms - 3.22398/sec | failed: 2 events; avg 53.293865ms - 3.22398/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #43 for future & fallible event' TIMED OUT after 153.911084ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #43 for future & fallible event' ended after running for 620.329167ms -- stats: | ok: 2 events; avg 100.980356ms - 3.22409/sec | time out: 2 events; avg 152.477294ms - 3.22409/sec | failed: 2 events; avg 53.347394ms - 3.22409/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #44 for future & fallible event' TIMED OUT after 153.908157ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #44 for future & fallible event' ended after running for 620.353613ms -- stats: | ok: 2 events; avg 101.544231ms - 3.22397/sec | time out: 2 events; avg 152.474135ms - 3.22397/sec | failed: 2 events; avg 52.799612ms - 3.22397/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #45 for future & fallible event' TIMED OUT after 153.91605ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #45 for future & fallible event' ended after running for 620.395514ms -- stats: | ok: 2 events; avg 101.535857ms - 3.22375/sec | time out: 2 events; avg 152.475744ms - 3.22375/sec | failed: 2 events; avg 52.835852ms - 3.22375/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #61 for future & fallible event' TIMED OUT after 153.960101ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #61 for future & fallible event' ended after running for 619.174569ms -- stats: | ok: 2 events; avg 101.491272ms - 3.23011/sec | time out: 2 events; avg 152.24202ms - 3.23011/sec | failed: 2 events; avg 53.11662ms - 3.23011/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #62 for future & fallible event' TIMED OUT after 153.977767ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #62 for future & fallible event' ended after running for 619.199747ms -- stats: | ok: 2 events; avg 101.477236ms - 3.22998/sec | time out: 2 events; avg 152.259678ms - 3.22998/sec | failed: 2 events; avg 53.15249ms - 3.22998/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #63 for future & fallible event' TIMED OUT after 154.025832ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #63 for future & fallible event' ended after running for 619.273541ms -- stats: | ok: 2 events; avg 101.464257ms - 3.22959/sec | time out: 2 events; avg 152.282327ms - 3.22959/sec | failed: 2 events; avg 53.184099ms - 3.22959/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #64 for future & fallible event' TIMED OUT after 154.045292ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #64 for future & fallible event' ended after running for 619.312049ms -- stats: | ok: 2 events; avg 101.451829ms - 3.22939/sec | time out: 2 events; avg 152.288944ms - 3.22939/sec | failed: 2 events; avg 53.215165ms - 3.22939/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #65 for future & fallible event' TIMED OUT after 154.059254ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #65 for future & fallible event' ended after running for 619.34741ms -- stats: | ok: 2 events; avg 101.440132ms - 3.22921/sec | time out: 2 events; avg 152.293801ms - 3.22921/sec | failed: 2 events; avg 53.246774ms - 3.22921/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #66 for future & fallible event' TIMED OUT after 154.069938ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #66 for future & fallible event' ended after running for 619.379835ms -- stats: | ok: 2 events; avg 101.427197ms - 3.22904/sec | time out: 2 events; avg 152.295336ms - 3.22904/sec | failed: 2 events; avg 53.27744ms - 3.22904/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #67 for future & fallible event' TIMED OUT after 154.078914ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #67 for future & fallible event' ended after running for 619.414334ms -- stats: | ok: 2 events; avg 101.414919ms - 3.22886/sec | time out: 2 events; avg 152.297333ms - 3.22886/sec | failed: 2 events; avg 53.308647ms - 3.22886/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #68 for future & fallible event' TIMED OUT after 154.099331ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #68 for future & fallible event' ended after running for 619.449244ms -- stats: | ok: 2 events; avg 101.40229ms - 3.22867/sec | time out: 2 events; avg 152.30462ms - 3.22867/sec | failed: 2 events; avg 53.340472ms - 3.22867/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #69 for future & fallible event' TIMED OUT after 154.135689ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #69 for future & fallible event' ended after running for 619.508936ms -- stats: | ok: 2 events; avg 101.389118ms - 3.22836/sec | time out: 2 events; avg 152.319252ms - 3.22836/sec | failed: 2 events; avg 53.377356ms - 3.22836/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #70 for future & fallible event' TIMED OUT after 154.180371ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #70 for future & fallible event' ended after running for 619.571079ms -- stats: | ok: 2 events; avg 101.377361ms - 3.22804/sec | time out: 2 events; avg 152.338952ms - 3.22804/sec | failed: 2 events; avg 53.395189ms - 3.22804/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #71 for future & fallible event' TIMED OUT after 154.219972ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #71 for future & fallible event' ended after running for 619.624621ms -- stats: | ok: 2 events; avg 101.382494ms - 3.22776/sec | time out: 2 events; avg 152.354985ms - 3.22776/sec | failed: 2 events; avg 53.423926ms - 3.22776/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #72 for future & fallible event' TIMED OUT after 154.235152ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #72 for future & fallible event' ended after running for 619.658499ms -- stats: | ok: 2 events; avg 101.372018ms - 3.22758/sec | time out: 2 events; avg 152.358949ms - 3.22758/sec | failed: 2 events; avg 53.45419ms - 3.22758/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #73 for future & fallible event' TIMED OUT after 154.242589ms 2023-03-18T06:59:34.163Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #73 for future & fallible event' ended after running for 619.69148ms -- stats: | ok: 2 events; avg 101.360142ms - 3.22741/sec | time out: 2 events; avg 152.357757ms - 3.22741/sec | failed: 2 events; avg 53.485677ms - 3.22741/sec 2023-03-18T06:59:34.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #46 for future & fallible event' TIMED OUT after 154.250698ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #46 for future & fallible event' ended after running for 621.177047ms -- stats: | ok: 2 events; avg 101.296008ms - 3.21969/sec | time out: 2 events; avg 152.888477ms - 3.21969/sec | failed: 2 events; avg 53.077228ms - 3.21969/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #47 for future & fallible event' TIMED OUT after 154.258691ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #47 for future & fallible event' ended after running for 621.197579ms -- stats: | ok: 2 events; avg 101.282962ms - 3.21959/sec | time out: 2 events; avg 152.890056ms - 3.21959/sec | failed: 2 events; avg 53.108953ms - 3.21959/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #48 for future & fallible event' TIMED OUT after 154.267922ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #48 for future & fallible event' ended after running for 621.21994ms -- stats: | ok: 2 events; avg 101.269573ms - 3.21947/sec | time out: 2 events; avg 152.891874ms - 3.21947/sec | failed: 2 events; avg 53.140547ms - 3.21947/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #49 for future & fallible event' TIMED OUT after 154.276687ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #49 for future & fallible event' ended after running for 621.242803ms -- stats: | ok: 2 events; avg 101.253673ms - 3.21935/sec | time out: 2 events; avg 152.886167ms - 3.21935/sec | failed: 2 events; avg 53.171553ms - 3.21935/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #50 for future & fallible event' TIMED OUT after 154.286004ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #50 for future & fallible event' ended after running for 621.285661ms -- stats: | ok: 2 events; avg 101.24509ms - 3.21913/sec | time out: 2 events; avg 152.885973ms - 3.21913/sec | failed: 2 events; avg 53.207599ms - 3.21913/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #51 for future & fallible event' TIMED OUT after 154.328215ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #51 for future & fallible event' ended after running for 621.329262ms -- stats: | ok: 2 events; avg 101.233453ms - 3.21891/sec | time out: 2 events; avg 152.904004ms - 3.21891/sec | failed: 2 events; avg 53.240135ms - 3.21891/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #52 for future & fallible event' TIMED OUT after 154.339055ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #52 for future & fallible event' ended after running for 621.354364ms -- stats: | ok: 2 events; avg 101.220332ms - 3.21878/sec | time out: 2 events; avg 152.905956ms - 3.21878/sec | failed: 2 events; avg 53.275906ms - 3.21878/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #53 for future & fallible event' TIMED OUT after 154.346949ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #53 for future & fallible event' ended after running for 621.379346ms -- stats: | ok: 2 events; avg 101.207957ms - 3.21865/sec | time out: 2 events; avg 152.905658ms - 3.21865/sec | failed: 2 events; avg 53.308789ms - 3.21865/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #54 for future & fallible event' TIMED OUT after 154.359061ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #54 for future & fallible event' ended after running for 621.407129ms -- stats: | ok: 2 events; avg 101.195961ms - 3.21850/sec | time out: 2 events; avg 152.908653ms - 3.21850/sec | failed: 2 events; avg 53.341895ms - 3.21850/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #55 for future & fallible event' TIMED OUT after 154.370778ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #55 for future & fallible event' ended after running for 621.428324ms -- stats: | ok: 2 events; avg 101.183504ms - 3.21839/sec | time out: 2 events; avg 152.905136ms - 3.21839/sec | failed: 2 events; avg 53.37359ms - 3.21839/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #56 for future & fallible event' TIMED OUT after 154.377859ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #56 for future & fallible event' ended after running for 621.452429ms -- stats: | ok: 2 events; avg 101.171821ms - 3.21827/sec | time out: 2 events; avg 152.903616ms - 3.21827/sec | failed: 2 events; avg 53.411517ms - 3.21827/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #57 for future & fallible event' TIMED OUT after 154.386254ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #57 for future & fallible event' ended after running for 621.492185ms -- stats: | ok: 2 events; avg 101.159655ms - 3.21806/sec | time out: 2 events; avg 152.905047ms - 3.21806/sec | failed: 2 events; avg 53.444855ms - 3.21806/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #58 for future & fallible event' TIMED OUT after 154.426702ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #58 for future & fallible event' ended after running for 621.546153ms -- stats: | ok: 2 events; avg 101.1471ms - 3.21778/sec | time out: 2 events; avg 152.923167ms - 3.21778/sec | failed: 2 events; avg 53.476013ms - 3.21778/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #59 for future & fallible event' TIMED OUT after 154.451393ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #59 for future & fallible event' ended after running for 621.588616ms -- stats: | ok: 2 events; avg 101.134934ms - 3.21756/sec | time out: 2 events; avg 152.932554ms - 3.21756/sec | failed: 2 events; avg 53.50703ms - 3.21756/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #60 for future & fallible event' TIMED OUT after 154.418668ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #60 for future & fallible event' ended after running for 621.610481ms -- stats: | ok: 2 events; avg 101.12226ms - 3.21745/sec | time out: 2 events; avg 152.913004ms - 3.21745/sec | failed: 2 events; avg 53.568736ms - 3.21745/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #74 for future & fallible event' TIMED OUT after 154.420873ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #74 for future & fallible event' ended after running for 620.502696ms -- stats: | ok: 2 events; avg 101.722702ms - 3.22319/sec | time out: 2 events; avg 153.233379ms - 3.22319/sec | failed: 2 events; avg 52.643944ms - 3.22319/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #75 for future & fallible event' TIMED OUT after 154.432685ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #75 for future & fallible event' ended after running for 620.537074ms -- stats: | ok: 2 events; avg 101.706885ms - 3.22301/sec | time out: 2 events; avg 153.246909ms - 3.22301/sec | failed: 2 events; avg 52.679472ms - 3.22301/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #76 for future & fallible event' TIMED OUT after 154.442958ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #76 for future & fallible event' ended after running for 620.570376ms -- stats: | ok: 2 events; avg 101.694316ms - 3.22284/sec | time out: 2 events; avg 153.250605ms - 3.22284/sec | failed: 2 events; avg 52.710913ms - 3.22284/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #77 for future & fallible event' TIMED OUT after 154.451298ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #77 for future & fallible event' ended after running for 620.604228ms -- stats: | ok: 2 events; avg 101.681471ms - 3.22267/sec | time out: 2 events; avg 153.24387ms - 3.22267/sec | failed: 2 events; avg 52.742973ms - 3.22267/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #78 for future & fallible event' TIMED OUT after 154.461937ms 2023-03-18T06:59:34.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #78 for future & fallible event' ended after running for 620.637595ms -- stats: | ok: 2 events; avg 101.669267ms - 3.22249/sec | time out: 2 events; avg 153.24679ms - 3.22249/sec | failed: 2 events; avg 52.78331ms - 3.22249/sec 2023-03-18T06:59:34.164Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #79 for future & fallible event' TIMED OUT after 154.470377ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #79 for future & fallible event' ended after running for 620.669743ms -- stats: | ok: 2 events; avg 101.657555ms - 3.22233/sec | time out: 2 events; avg 153.250381ms - 3.22233/sec | failed: 2 events; avg 52.814387ms - 3.22233/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #80 for future & fallible event' TIMED OUT after 154.479783ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #80 for future & fallible event' ended after running for 620.704227ms -- stats: | ok: 2 events; avg 101.646662ms - 3.22215/sec | time out: 2 events; avg 153.258443ms - 3.22215/sec | failed: 2 events; avg 52.841637ms - 3.22215/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #81 for future & fallible event' TIMED OUT after 154.491916ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #81 for future & fallible event' ended after running for 620.740852ms -- stats: | ok: 2 events; avg 101.633742ms - 3.22196/sec | time out: 2 events; avg 153.269231ms - 3.22196/sec | failed: 2 events; avg 52.864704ms - 3.22196/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #82 for future & fallible event' TIMED OUT after 154.493595ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #82 for future & fallible event' ended after running for 620.772529ms -- stats: | ok: 2 events; avg 101.621218ms - 3.22179/sec | time out: 2 events; avg 153.275162ms - 3.22179/sec | failed: 2 events; avg 52.888379ms - 3.22179/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #83 for future & fallible event' TIMED OUT after 154.499578ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #83 for future & fallible event' ended after running for 620.817493ms -- stats: | ok: 2 events; avg 101.608649ms - 3.22156/sec | time out: 2 events; avg 153.283507ms - 3.22156/sec | failed: 2 events; avg 52.91687ms - 3.22156/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #84 for future & fallible event' TIMED OUT after 154.524255ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #84 for future & fallible event' ended after running for 620.852613ms -- stats: | ok: 2 events; avg 101.596288ms - 3.22138/sec | time out: 2 events; avg 153.301597ms - 3.22138/sec | failed: 2 events; avg 52.940197ms - 3.22138/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #85 for future & fallible event' TIMED OUT after 154.532258ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #85 for future & fallible event' ended after running for 620.884656ms -- stats: | ok: 2 events; avg 101.582959ms - 3.22121/sec | time out: 2 events; avg 153.311357ms - 3.22121/sec | failed: 2 events; avg 52.963346ms - 3.22121/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #86 for future & fallible event' TIMED OUT after 154.541434ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #86 for future & fallible event' ended after running for 620.914505ms -- stats: | ok: 2 events; avg 101.570338ms - 3.22106/sec | time out: 2 events; avg 153.321952ms - 3.22106/sec | failed: 2 events; avg 52.985601ms - 3.22106/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #87 for future & fallible event' TIMED OUT after 154.549453ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #87 for future & fallible event' ended after running for 620.950718ms -- stats: | ok: 2 events; avg 101.558261ms - 3.22087/sec | time out: 2 events; avg 153.331041ms - 3.22087/sec | failed: 2 events; avg 53.007558ms - 3.22087/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #88 for future & fallible event' TIMED OUT after 154.564808ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #88 for future & fallible event' ended after running for 620.988825ms -- stats: | ok: 2 events; avg 101.545326ms - 3.22067/sec | time out: 2 events; avg 153.344244ms - 3.22067/sec | failed: 2 events; avg 53.031236ms - 3.22067/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #89 for future & fallible event' TIMED OUT after 154.584473ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #89 for future & fallible event' ended after running for 621.049625ms -- stats: | ok: 2 events; avg 101.533063ms - 3.22035/sec | time out: 2 events; avg 153.359875ms - 3.22035/sec | failed: 2 events; avg 53.054072ms - 3.22035/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #90 for future & fallible event' TIMED OUT after 154.627467ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #90 for future & fallible event' ended after running for 621.117475ms -- stats: | ok: 2 events; avg 101.520829ms - 3.22000/sec | time out: 2 events; avg 153.386772ms - 3.22000/sec | failed: 2 events; avg 53.077105ms - 3.22000/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #91 for future & fallible event' TIMED OUT after 154.677196ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #91 for future & fallible event' ended after running for 621.192022ms -- stats: | ok: 2 events; avg 101.507723ms - 3.21962/sec | time out: 2 events; avg 153.417498ms - 3.21962/sec | failed: 2 events; avg 53.099617ms - 3.21962/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #92 for future & fallible event' TIMED OUT after 154.725752ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #92 for future & fallible event' ended after running for 621.258463ms -- stats: | ok: 2 events; avg 101.495065ms - 3.21927/sec | time out: 2 events; avg 153.44736ms - 3.21927/sec | failed: 2 events; avg 53.12274ms - 3.21927/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #93 for future & fallible event' TIMED OUT after 154.756042ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #93 for future & fallible event' ended after running for 621.298321ms -- stats: | ok: 2 events; avg 101.482913ms - 3.21907/sec | time out: 2 events; avg 153.468132ms - 3.21907/sec | failed: 2 events; avg 53.145632ms - 3.21907/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #94 for future & fallible event' TIMED OUT after 154.762126ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #94 for future & fallible event' ended after running for 621.332208ms -- stats: | ok: 2 events; avg 101.470158ms - 3.21889/sec | time out: 2 events; avg 153.476089ms - 3.21889/sec | failed: 2 events; avg 53.168789ms - 3.21889/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #95 for future & fallible event' TIMED OUT after 154.783876ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #95 for future & fallible event' ended after running for 621.365318ms -- stats: | ok: 2 events; avg 101.458445ms - 3.21872/sec | time out: 2 events; avg 153.485954ms - 3.21872/sec | failed: 2 events; avg 53.194392ms - 3.21872/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #96 for future & fallible event' TIMED OUT after 154.80107ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #96 for future & fallible event' ended after running for 621.397853ms -- stats: | ok: 2 events; avg 101.445869ms - 3.21855/sec | time out: 2 events; avg 153.490901ms - 3.21855/sec | failed: 2 events; avg 53.218015ms - 3.21855/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #97 for future & fallible event' TIMED OUT after 154.811604ms 2023-03-18T06:59:34.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #97 for future & fallible event' ended after running for 621.429988ms -- stats: | ok: 2 events; avg 101.433396ms - 3.21838/sec | time out: 2 events; avg 153.495193ms - 3.21838/sec | failed: 2 events; avg 53.246006ms - 3.21838/sec 2023-03-18T06:59:34.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #98 for future & fallible event' TIMED OUT after 154.821908ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #98 for future & fallible event' ended after running for 621.46383ms -- stats: | ok: 2 events; avg 101.420686ms - 3.21821/sec | time out: 2 events; avg 153.500587ms - 3.21821/sec | failed: 2 events; avg 53.274296ms - 3.21821/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #99 for future & fallible event' TIMED OUT after 154.816205ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #99 for future & fallible event' ended after running for 621.496855ms -- stats: | ok: 2 events; avg 101.408176ms - 3.21804/sec | time out: 2 events; avg 153.495878ms - 3.21804/sec | failed: 2 events; avg 53.301215ms - 3.21804/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #100 for future & fallible event' TIMED OUT after 154.820815ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #100 for future & fallible event' ended after running for 621.52967ms -- stats: | ok: 2 events; avg 101.396263ms - 3.21787/sec | time out: 2 events; avg 153.497398ms - 3.21787/sec | failed: 2 events; avg 53.340461ms - 3.21787/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #101 for future & fallible event' TIMED OUT after 154.830507ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #101 for future & fallible event' ended after running for 621.562691ms -- stats: | ok: 2 events; avg 101.384059ms - 3.21770/sec | time out: 2 events; avg 153.500751ms - 3.21770/sec | failed: 2 events; avg 53.371057ms - 3.21770/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #102 for future & fallible event' TIMED OUT after 154.843813ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #102 for future & fallible event' ended after running for 621.617342ms -- stats: | ok: 2 events; avg 101.372994ms - 3.21741/sec | time out: 2 events; avg 153.50537ms - 3.21741/sec | failed: 2 events; avg 53.400747ms - 3.21741/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #103 for future & fallible event' TIMED OUT after 154.874639ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #103 for future & fallible event' ended after running for 621.653275ms -- stats: | ok: 2 events; avg 101.360045ms - 3.21723/sec | time out: 2 events; avg 153.519094ms - 3.21723/sec | failed: 2 events; avg 53.431384ms - 3.21723/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #104 for future & fallible event' TIMED OUT after 154.885163ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #104 for future & fallible event' ended after running for 621.68632ms -- stats: | ok: 2 events; avg 101.347938ms - 3.21706/sec | time out: 2 events; avg 153.516084ms - 3.21706/sec | failed: 2 events; avg 53.471684ms - 3.21706/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #105 for future & fallible event' TIMED OUT after 154.893968ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #105 for future & fallible event' ended after running for 621.719817ms -- stats: | ok: 2 events; avg 101.336166ms - 3.21688/sec | time out: 2 events; avg 153.525382ms - 3.21688/sec | failed: 2 events; avg 53.495601ms - 3.21688/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #106 for future & fallible event' TIMED OUT after 154.81873ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #106 for future & fallible event' ended after running for 621.757493ms -- stats: | ok: 2 events; avg 101.990685ms - 3.21669/sec | time out: 2 events; avg 153.492495ms - 3.21669/sec | failed: 2 events; avg 52.891582ms - 3.21669/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #107 for future & fallible event' TIMED OUT after 154.848654ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #107 for future & fallible event' ended after running for 621.823234ms -- stats: | ok: 2 events; avg 101.984352ms - 3.21635/sec | time out: 2 events; avg 153.513044ms - 3.21635/sec | failed: 2 events; avg 52.911773ms - 3.21635/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #108 for future & fallible event' TIMED OUT after 154.886361ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #108 for future & fallible event' ended after running for 621.883558ms -- stats: | ok: 2 events; avg 101.972163ms - 3.21604/sec | time out: 2 events; avg 153.537333ms - 3.21604/sec | failed: 2 events; avg 52.934766ms - 3.21604/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #109 for future & fallible event' TIMED OUT after 154.951876ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #109 for future & fallible event' ended after running for 621.967019ms -- stats: | ok: 2 events; avg 101.952285ms - 3.21560/sec | time out: 2 events; avg 153.57548ms - 3.21560/sec | failed: 2 events; avg 52.958146ms - 3.21560/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #110 for future & fallible event' TIMED OUT after 154.973415ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #110 for future & fallible event' ended after running for 622.004826ms -- stats: | ok: 2 events; avg 101.936325ms - 3.21541/sec | time out: 2 events; avg 153.599903ms - 3.21541/sec | failed: 2 events; avg 52.981228ms - 3.21541/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #111 for future & fallible event' TIMED OUT after 154.985468ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #111 for future & fallible event' ended after running for 622.039676ms -- stats: | ok: 2 events; avg 101.925701ms - 3.21523/sec | time out: 2 events; avg 153.612792ms - 3.21523/sec | failed: 2 events; avg 53.001255ms - 3.21523/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #112 for future & fallible event' TIMED OUT after 154.996739ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #112 for future & fallible event' ended after running for 622.074335ms -- stats: | ok: 2 events; avg 101.913452ms - 3.21505/sec | time out: 2 events; avg 153.623641ms - 3.21505/sec | failed: 2 events; avg 53.023454ms - 3.21505/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #113 for future & fallible event' TIMED OUT after 155.016018ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #113 for future & fallible event' ended after running for 622.110133ms -- stats: | ok: 2 events; avg 101.901904ms - 3.21486/sec | time out: 2 events; avg 153.639108ms - 3.21486/sec | failed: 2 events; avg 53.045496ms - 3.21486/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #114 for future & fallible event' TIMED OUT after 155.041927ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #114 for future & fallible event' ended after running for 622.145107ms -- stats: | ok: 2 events; avg 101.890311ms - 3.21468/sec | time out: 2 events; avg 153.653413ms - 3.21468/sec | failed: 2 events; avg 53.063028ms - 3.21468/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #115 for future & fallible event' TIMED OUT after 155.069205ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #115 for future & fallible event' ended after running for 622.18094ms -- stats: | ok: 2 events; avg 101.87842ms - 3.21450/sec | time out: 2 events; avg 153.672144ms - 3.21450/sec | failed: 2 events; avg 53.08038ms - 3.21450/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #116 for future & fallible event' TIMED OUT after 155.101534ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #116 for future & fallible event' ended after running for 622.220034ms -- stats: | ok: 2 events; avg 101.866432ms - 3.21430/sec | time out: 2 events; avg 153.693676ms - 3.21430/sec | failed: 2 events; avg 53.09565ms - 3.21430/sec 2023-03-18T06:59:34.166Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #117 for future & fallible event' TIMED OUT after 155.129909ms 2023-03-18T06:59:34.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #117 for future & fallible event' ended after running for 622.254148ms -- stats: | ok: 2 events; avg 101.854488ms - 3.21412/sec | time out: 2 events; avg 153.712839ms - 3.21412/sec | failed: 2 events; avg 53.110469ms - 3.21412/sec 2023-03-18T06:59:34.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #118 for future & fallible event' TIMED OUT after 155.156736ms 2023-03-18T06:59:34.167Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #118 for future & fallible event' ended after running for 622.278874ms -- stats: | ok: 2 events; avg 101.842389ms - 3.21399/sec | time out: 2 events; avg 153.730839ms - 3.21399/sec | failed: 2 events; avg 53.125486ms - 3.21399/sec 2023-03-18T06:59:34.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #119 for future & fallible event' TIMED OUT after 155.18463ms 2023-03-18T06:59:34.167Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #119 for future & fallible event' ended after running for 622.303816ms -- stats: | ok: 2 events; avg 101.829648ms - 3.21386/sec | time out: 2 events; avg 153.749615ms - 3.21386/sec | failed: 2 events; avg 53.140722ms - 3.21386/sec 2023-03-18T06:59:34.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #120 for future & fallible event' TIMED OUT after 155.212529ms 2023-03-18T06:59:34.167Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #120 for future & fallible event' ended after running for 622.325191ms -- stats: | ok: 2 events; avg 101.817623ms - 3.21375/sec | time out: 2 events; avg 153.769583ms - 3.21375/sec | failed: 2 events; avg 53.155623ms - 3.21375/sec 2023-03-18T06:59:34.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #121 for future & fallible event' TIMED OUT after 155.239485ms 2023-03-18T06:59:34.167Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #121 for future & fallible event' ended after running for 622.348589ms -- stats: | ok: 2 events; avg 101.805054ms - 3.21363/sec | time out: 2 events; avg 153.777212ms - 3.21363/sec | failed: 2 events; avg 53.170096ms - 3.21363/sec 2023-03-18T06:59:34.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #38 for future & fallible event' TIMED OUT after 155.284368ms 2023-03-18T06:59:34.167Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #38 for future & fallible event' ended after running for 624.535034ms -- stats: | ok: 2 events; avg 101.749524ms - 3.20238/sec | time out: 2 events; avg 153.800696ms - 3.20238/sec | failed: 2 events; avg 53.345557ms - 3.20238/sec 2023-03-18T06:59:34.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #39 for future & fallible event' TIMED OUT after 155.643327ms 2023-03-18T06:59:34.167Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #39 for future & fallible event' ended after running for 624.952202ms -- stats: | ok: 2 events; avg 101.737261ms - 3.20024/sec | time out: 2 events; avg 153.984591ms - 3.20024/sec | failed: 2 events; avg 53.362995ms - 3.20024/sec 2023-03-18T06:59:34.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #40 for future & fallible event' TIMED OUT after 155.746293ms 2023-03-18T06:59:34.167Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #40 for future & fallible event' ended after running for 625.014359ms -- stats: | ok: 2 events; avg 101.725638ms - 3.19993/sec | time out: 2 events; avg 154.040977ms - 3.19993/sec | failed: 2 events; avg 53.377807ms - 3.19993/sec 2023-03-18T06:59:34.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #41 for future & fallible event' TIMED OUT after 155.784441ms 2023-03-18T06:59:34.167Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #41 for future & fallible event' ended after running for 625.05411ms -- stats: | ok: 2 events; avg 101.713195ms - 3.19972/sec | time out: 2 events; avg 154.065073ms - 3.19972/sec | failed: 2 events; avg 53.392321ms - 3.19972/sec 2023-03-18T06:59:34.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #42 for future & fallible event' TIMED OUT after 155.815422ms 2023-03-18T06:59:34.167Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #42 for future & fallible event' ended after running for 625.092157ms -- stats: | ok: 2 events; avg 101.700529ms - 3.19953/sec | time out: 2 events; avg 154.086351ms - 3.19953/sec | failed: 2 events; avg 53.407088ms - 3.19953/sec ok <0.648s> test multi::tests::undegradable_latencies ... 2023-03-18T06:59:34.172Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIMPLE: solo pipeline' started: Non-Futures / Non-Fallible Items & Metrics 1. Time to produce & consume a SIMPLE event (no other Multi Tokio tasks): 42.457µs 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #0)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #1)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #2)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #3)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #4)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #5)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #6)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #7)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #8)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #9)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #10)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #11)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #12)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #13)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #14)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #15)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #16)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #17)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #18)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #19)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #20)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #21)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #22)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #23)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #24)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #25)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #26)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #27)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #28)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #29)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #30)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #31)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #32)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #33)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #34)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #35)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #36)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #37)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #38)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #39)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.173Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #40)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #41)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #42)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #43)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #44)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #45)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #46)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #47)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #48)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #49)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #50)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #51)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #52)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #53)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #54)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #55)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #56)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #57)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #58)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #59)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #60)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #61)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #62)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #63)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #64)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #65)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #66)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #67)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #68)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #69)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #70)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.174Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #71)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #72)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #73)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #74)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #75)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #76)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #77)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #78)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #79)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #80)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #81)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #82)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #83)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #84)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #85)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #86)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #87)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #88)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #89)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #90)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #91)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #92)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #93)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #94)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #95)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #96)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #97)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #98)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #99)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #100)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #101)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #102)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #103)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #104)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #105)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #106)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #107)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #108)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #109)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #110)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #111)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #112)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #113)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #114)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #115)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #116)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #117)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #118)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #119)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #120)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #121)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #122)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #123)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #124)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #125)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #126)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #127)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #128)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #129)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #130)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #131)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #132)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #133)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #134)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #135)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #136)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #137)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #138)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #139)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #140)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #141)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #142)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #143)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #144)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #145)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #146)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #147)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #148)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #149)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #150)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #151)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #152)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #153)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #154)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #155)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #156)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #157)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #158)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #159)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #160)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #161)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #162)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #163)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #164)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #165)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #166)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #167)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #168)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #169)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #170)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #171)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #172)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #173)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #174)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #175)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #176)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #177)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #178)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #179)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #180)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #181)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #182)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #183)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #184)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #185)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #186)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #187)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #188)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #189)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #190)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #191)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #192)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #193)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #194)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #195)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #196)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #197)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #198)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #199)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #200)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #201)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #202)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #203)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #204)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #205)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #206)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #207)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #208)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #209)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #210)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #211)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #212)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #213)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #214)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #215)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #216)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #217)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #218)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #219)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #220)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #221)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #222)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #223)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #224)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #225)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #226)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.176Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #227)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #228)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #229)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #230)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #231)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #232)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #233)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #234)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #235)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #236)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #237)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #238)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #239)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #240)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #241)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #242)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #243)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #244)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #245)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #246)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #247)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #248)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #249)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #250)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #251)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #252)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #253)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #254)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T06:59:34.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #255)' started: Non-Futures / Non-Fallible Items & Metrics 2. Tokio Runtime is now BLOATED with 256 tasks -- all of them are multi executors. Time to produce + time for all pipelines to consume it: 2.610169ms 3. Time to produce & consume another SIMPLE event (with lots of -- 256 -- sleeping Multi Tokio tasks): 3.197µs 2023-03-18T06:59:34.177Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIMPLE: solo pipeline' ended after running for 4.856289ms -- stats: | ok: 2 events 2023-03-18T06:59:34.181Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #0)' ended after running for 8.209996ms -- stats: | ok: 1 events 2023-03-18T06:59:34.181Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #1)' ended after running for 8.24016ms -- stats: | ok: 1 events 2023-03-18T06:59:34.181Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #2)' ended after running for 8.258327ms -- stats: | ok: 1 events 2023-03-18T06:59:34.181Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #3)' ended after running for 8.274003ms -- stats: | ok: 1 events 2023-03-18T06:59:34.181Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #4)' ended after running for 8.289794ms -- stats: | ok: 1 events 2023-03-18T06:59:34.181Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #5)' ended after running for 8.30548ms -- stats: | ok: 1 events 2023-03-18T06:59:34.181Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #6)' ended after running for 8.321457ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #7)' ended after running for 8.336806ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #8)' ended after running for 8.3512ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #9)' ended after running for 8.365928ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #10)' ended after running for 8.38167ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #11)' ended after running for 8.396845ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #12)' ended after running for 8.412375ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #13)' ended after running for 8.42762ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #14)' ended after running for 8.464931ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #15)' ended after running for 8.485528ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #16)' ended after running for 8.503244ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #17)' ended after running for 8.519577ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #18)' ended after running for 8.535608ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #19)' ended after running for 8.551304ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #20)' ended after running for 8.567862ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #21)' ended after running for 8.583368ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #22)' ended after running for 8.598758ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #23)' ended after running for 8.615296ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #24)' ended after running for 8.631809ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #25)' ended after running for 8.64752ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #26)' ended after running for 8.665626ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #27)' ended after running for 8.681483ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #28)' ended after running for 8.698652ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #29)' ended after running for 8.714223ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #30)' ended after running for 8.729773ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #31)' ended after running for 8.745194ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #32)' ended after running for 8.760854ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #33)' ended after running for 8.77219ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #34)' ended after running for 8.785922ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #35)' ended after running for 8.800024ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #36)' ended after running for 8.818742ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #37)' ended after running for 8.836082ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #38)' ended after running for 8.853417ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #39)' ended after running for 8.870351ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #40)' ended after running for 8.8875ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #41)' ended after running for 8.903557ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #42)' ended after running for 8.919659ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #43)' ended after running for 8.941098ms -- stats: | ok: 1 events 2023-03-18T06:59:34.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #44)' ended after running for 8.956879ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #45)' ended after running for 8.963109ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #46)' ended after running for 8.970074ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #47)' ended after running for 8.978103ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #48)' ended after running for 8.98742ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #49)' ended after running for 8.99647ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #50)' ended after running for 9.005546ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #51)' ended after running for 9.014106ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #52)' ended after running for 9.039785ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #53)' ended after running for 9.031576ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #54)' ended after running for 9.039489ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #55)' ended after running for 9.04431ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #56)' ended after running for 9.058006ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #57)' ended after running for 9.073612ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #58)' ended after running for 9.085284ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #59)' ended after running for 9.100077ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #60)' ended after running for 9.114606ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #61)' ended after running for 8.580251ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #62)' ended after running for 8.589477ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #63)' ended after running for 8.602807ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #64)' ended after running for 8.617726ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #65)' ended after running for 8.631994ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #66)' ended after running for 8.647219ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #67)' ended after running for 8.661857ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #68)' ended after running for 8.680936ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #69)' ended after running for 8.696617ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #70)' ended after running for 8.712579ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #71)' ended after running for 8.718598ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #72)' ended after running for 8.724486ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #73)' ended after running for 8.733397ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #74)' ended after running for 8.742353ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #75)' ended after running for 8.749008ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #76)' ended after running for 8.753829ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #77)' ended after running for 8.759542ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #78)' ended after running for 8.765891ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #79)' ended after running for 8.771609ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #80)' ended after running for 8.778741ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #81)' ended after running for 8.757357ms -- stats: | ok: 1 events 2023-03-18T06:59:34.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #82)' ended after running for 8.763205ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #83)' ended after running for 8.767544ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #84)' ended after running for 8.772617ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #85)' ended after running for 8.776149ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #86)' ended after running for 8.789491ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #87)' ended after running for 8.804249ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #88)' ended after running for 8.818727ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #89)' ended after running for 8.833993ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #90)' ended after running for 8.866472ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #91)' ended after running for 8.88315ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #92)' ended after running for 8.899167ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #93)' ended after running for 8.919258ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #94)' ended after running for 8.935626ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #95)' ended after running for 8.950996ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #96)' ended after running for 8.966903ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #97)' ended after running for 8.981025ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #98)' ended after running for 8.99654ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #99)' ended after running for 9.012247ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #100)' ended after running for 9.027441ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #101)' ended after running for 9.042917ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #102)' ended after running for 9.062301ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #103)' ended after running for 9.078017ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #104)' ended after running for 9.0925ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #105)' ended after running for 9.108196ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #106)' ended after running for 9.124058ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #107)' ended after running for 9.139218ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #108)' ended after running for 9.149911ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #109)' ended after running for 9.163553ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #110)' ended after running for 9.178783ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #111)' ended after running for 9.193447ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #112)' ended after running for 9.207744ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #113)' ended after running for 9.223937ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #114)' ended after running for 9.239468ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #115)' ended after running for 9.255364ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #116)' ended after running for 9.270939ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #117)' ended after running for 9.28644ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #118)' ended after running for 9.30149ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #119)' ended after running for 9.317521ms -- stats: | ok: 1 events 2023-03-18T06:59:34.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #120)' ended after running for 9.333989ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #121)' ended after running for 9.34971ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #122)' ended after running for 9.373319ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #123)' ended after running for 9.389312ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #124)' ended after running for 9.404992ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #125)' ended after running for 9.420142ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #126)' ended after running for 9.435427ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #127)' ended after running for 9.468062ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #128)' ended after running for 9.486149ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #129)' ended after running for 9.502315ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #130)' ended after running for 9.518583ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #131)' ended after running for 9.535181ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #132)' ended after running for 9.546727ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #133)' ended after running for 9.563109ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #134)' ended after running for 9.578766ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #135)' ended after running for 9.594312ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #136)' ended after running for 9.610729ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #137)' ended after running for 9.627287ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #138)' ended after running for 9.643545ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #139)' ended after running for 9.658959ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #140)' ended after running for 9.674339ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #141)' ended after running for 9.690247ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #142)' ended after running for 9.706258ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #143)' ended after running for 9.726143ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #144)' ended after running for 9.742206ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #145)' ended after running for 9.757967ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #146)' ended after running for 9.776159ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #147)' ended after running for 9.795363ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #148)' ended after running for 9.806823ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #149)' ended after running for 9.811845ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #150)' ended after running for 9.819969ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #151)' ended after running for 9.829175ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #152)' ended after running for 9.838135ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #153)' ended after running for 9.845121ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #154)' ended after running for 9.851868ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #155)' ended after running for 9.859675ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #156)' ended after running for 9.859535ms -- stats: | ok: 1 events 2023-03-18T06:59:34.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #157)' ended after running for 9.865307ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #158)' ended after running for 9.869673ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #159)' ended after running for 9.882742ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #160)' ended after running for 9.823066ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #161)' ended after running for 9.829521ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #162)' ended after running for 9.843638ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #163)' ended after running for 9.858658ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #164)' ended after running for 9.887238ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #165)' ended after running for 9.907796ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #166)' ended after running for 9.924268ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #167)' ended after running for 9.94015ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #168)' ended after running for 9.960181ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #169)' ended after running for 9.976859ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #170)' ended after running for 9.992725ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #171)' ended after running for 10.008877ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #172)' ended after running for 10.025821ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #173)' ended after running for 10.041793ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #174)' ended after running for 10.057493ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #175)' ended after running for 10.073145ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #176)' ended after running for 10.088776ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #177)' ended after running for 10.104977ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #178)' ended after running for 10.121129ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #179)' ended after running for 10.137162ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #180)' ended after running for 10.149169ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #181)' ended after running for 10.163702ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #182)' ended after running for 10.179699ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #183)' ended after running for 10.201364ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #184)' ended after running for 10.218012ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #185)' ended after running for 10.233753ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #186)' ended after running for 10.249735ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #187)' ended after running for 10.266182ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #188)' ended after running for 10.282164ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #189)' ended after running for 10.297945ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #190)' ended after running for 10.314222ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #191)' ended after running for 10.330465ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #192)' ended after running for 10.346522ms -- stats: | ok: 1 events 2023-03-18T06:59:34.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #193)' ended after running for 10.366918ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #194)' ended after running for 10.382926ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #195)' ended after running for 10.398972ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #196)' ended after running for 10.414378ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #197)' ended after running for 10.430409ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #198)' ended after running for 10.44614ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #199)' ended after running for 10.461631ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #200)' ended after running for 10.480804ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #201)' ended after running for 10.513154ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #202)' ended after running for 10.532238ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #203)' ended after running for 10.54853ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #204)' ended after running for 10.562632ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #205)' ended after running for 10.57867ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #206)' ended after running for 10.595834ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #207)' ended after running for 10.611816ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #208)' ended after running for 10.628398ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #209)' ended after running for 10.643854ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #210)' ended after running for 10.659795ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #211)' ended after running for 10.676128ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #212)' ended after running for 10.691392ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #213)' ended after running for 10.707119ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #214)' ended after running for 10.723777ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #215)' ended after running for 10.739428ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #216)' ended after running for 10.75581ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #217)' ended after running for 10.771977ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #218)' ended after running for 10.791778ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #219)' ended after running for 10.809328ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #220)' ended after running for 10.825335ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #221)' ended after running for 10.841522ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #222)' ended after running for 10.858015ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #223)' ended after running for 10.868914ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #224)' ended after running for 10.874994ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #225)' ended after running for 10.88188ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #226)' ended after running for 10.889768ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #227)' ended after running for 10.899706ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #228)' ended after running for 10.904662ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #229)' ended after running for 10.910456ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #230)' ended after running for 10.917041ms -- stats: | ok: 1 events 2023-03-18T06:59:34.187Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #231)' ended after running for 10.923104ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #232)' ended after running for 10.921937ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #233)' ended after running for 10.928812ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #234)' ended after running for 10.936675ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #235)' ended after running for 10.946052ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #236)' ended after running for 10.954572ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #237)' ended after running for 10.944844ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #238)' ended after running for 10.953714ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #239)' ended after running for 10.986194ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #240)' ended after running for 11.003078ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #241)' ended after running for 11.019069ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #242)' ended after running for 11.035778ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #243)' ended after running for 11.050983ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #244)' ended after running for 11.065371ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #245)' ended after running for 11.080856ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #246)' ended after running for 11.097054ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #247)' ended after running for 11.113106ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #248)' ended after running for 11.129949ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #249)' ended after running for 11.145669ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #250)' ended after running for 11.162077ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #251)' ended after running for 11.177577ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #252)' ended after running for 11.194141ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #253)' ended after running for 11.209887ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #254)' ended after running for 11.228946ms -- stats: | ok: 1 events 2023-03-18T06:59:34.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #255)' ended after running for 11.246676ms -- stats: | ok: 1 events ok <0.019s> test ogre_std::benchmarks::benchmark_queues::all_in_and_out_benchmarks ... ignored test ogre_std::benchmarks::benchmark_queues::multiple_producers_single_consumer_benchmarks ... ignored test ogre_std::benchmarks::benchmark_queues::single_in_and_out_benchmarks ... ignored test ogre_std::benchmarks::benchmark_queues::single_producer_multiple_consumers_benchmarks ... ignored test ogre_std::benchmarks::benchmark_stacks::all_in_and_out_benchmarks ... ignored test ogre_std::benchmarks::benchmark_stacks::multiple_producers_single_consumer_benchmarks ... ignored test ogre_std::benchmarks::benchmark_stacks::single_in_and_out_benchmarks ... ignored test ogre_std::benchmarks::benchmark_stacks::single_producer_multiple_consumers_benchmarks ... ignored test ogre_std::instruments::tests::exhaustive_from_and_into_conversions ... variant: NoInstruments -- usize: 0; reconverted to variant: NoInstruments -- .metrics()=false; .metrics_diagnostics()=false; .tracing()=false variant: MetricsWithoutDiagnostics -- usize: 1; reconverted to variant: MetricsWithoutDiagnostics -- .metrics()=true; .metrics_diagnostics()=false; .tracing()=false variant: MetricsWithDiagnostics -- usize: 3; reconverted to variant: MetricsWithDiagnostics -- .metrics()=true; .metrics_diagnostics()=true; .tracing()=false variant: OperationsTracing -- usize: 4; reconverted to variant: OperationsTracing -- .metrics()=false; .metrics_diagnostics()=false; .tracing()=true variant: MetricsAndTracing -- usize: 7; reconverted to variant: MetricsAndTracing -- .metrics()=true; .metrics_diagnostics()=true; .tracing()=true ok <0.000s> test ogre_std::instruments::tests::invalid_from ... ok <0.000s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::basic_queue_use_cases ... ok <0.000s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <16.411s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <1.974s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::multiple_producers_single_consumer ... 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 729 reported stack was full CONSUMPTION: 4096000 successful, 1 reported stack was empty ok <2.271s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::single_producer_multiple_consumers ... 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 0 reports of 'full container' CONSUMPTIONS: 4096000 successful, 758 reports of 'empty container' ok <2.287s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::test_blocking ... Asserting pass 'virgin' Blocking on empty (from a virgin container): 100.159405ms Blocking on empty (again): 100.171463ms Non-Blocking 'try_consume()': 1.083µs Waiting to dequeue: 50.717773ms Blocking 'produce()' (won't block as there are free slots): 3.122µs Blocking on full: 100.14852ms Blocking on full (again): 100.170231ms Non-Blocking 'try_produce()': 1.328µs Waiting to 'produce()': 50.629436ms Blocking 'consume()' (won't block as there are elements): 5.027µs Asserting pass 'non-virgin' Blocking on empty (from a non-virgin container): 100.16892ms Blocking on empty (again): 100.159291ms Non-Blocking 'try_consume()': 888ns Waiting to dequeue: 50.604851ms Blocking 'produce()' (won't block as there are free slots): 4.976µs Blocking on full: 100.159599ms Blocking on full (again): 100.165895ms Non-Blocking 'try_produce()': 1.734µs Waiting to 'produce()': 50.638203ms Blocking 'consume()' (won't block as there are elements): 3.773µs Asserting pass 'promiscuous' Blocking on empty (from a promiscuous container): 100.188935ms Blocking on empty (again): 100.159085ms Non-Blocking 'try_consume()': 1.233µs Waiting to dequeue: 50.720444ms Blocking 'produce()' (won't block as there are free slots): 3.763µs Blocking on full: 100.160557ms Blocking on full (again): 100.167479ms Non-Blocking 'try_produce()': 2.024µs Waiting to 'produce()': 50.727791ms Blocking 'consume()' (won't block as there are elements): 3.207µs ok <1.507s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::basic_queue_use_cases ... ok <0.000s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <9.712s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <1.984s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_single_consumer ... 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 9703504 reported stack was full CONSUMPTION: 4096000 successful, 183 reported stack was empty ok <4.314s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::single_producer_multiple_consumers ... 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 0 reports of 'full container' CONSUMPTIONS: 4096000 successful, 9863458 reports of 'empty container' ok <4.968s> test ogre_std::ogre_queues::blocking_queue::tests::basic_queue_use_cases_blocking ... ok <0.000s> test ogre_std::ogre_queues::blocking_queue::tests::basic_queue_use_cases_non_blocking ... ok <0.000s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <12.980s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.459s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_single_consumer ... 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 57 reported stack was full CONSUMPTION: 4096000 successful, 11 reported stack was empty ok <23.584s> test ogre_std::ogre_queues::blocking_queue::tests::single_producer_multiple_consumers ... 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 4 reports of 'full container' CONSUMPTIONS: 4096000 successful, 103 reports of 'empty container' ok <37.824s> test ogre_std::ogre_queues::blocking_queue::tests::test_blocking ... Asserting pass 'virgin' Blocking on empty (from a virgin queue): 100.174184ms Blocking on empty (again): 100.16376ms Non-Blocking 'try_dequeue()': 647ns Blocking enqueueing (won't block as there are free slots): 1.528µs Blocking on full: 100.168057ms Blocking on full (again): 100.151325ms Non-Blocking 'try_enqueue()': 497ns Blocking dequeueing (won't block as there are elements): 1.363µs Asserting pass 'non-virgin' Blocking on empty (from a non-virgin queue): 100.164723ms Blocking on empty (again): 100.159556ms Non-Blocking 'try_dequeue()': 601ns Blocking enqueueing (won't block as there are free slots): 1.514µs Blocking on full: 100.168789ms Blocking on full (again): 100.171203ms Non-Blocking 'try_enqueue()': 566ns Blocking dequeueing (won't block as there are elements): 1.478µs Asserting pass 'promiscuous' Blocking on empty (from a promiscuous queue): 100.168419ms Blocking on empty (again): 100.161282ms Non-Blocking 'try_dequeue()': 571ns Blocking enqueueing (won't block as there are free slots): 1.528µs Blocking on full: 100.157357ms Blocking on full (again): 100.167519ms Non-Blocking 'try_enqueue()': 566ns Blocking dequeueing (won't block as there are elements): 1.363µs 'interrupt()' causing blocking operations to return immediately: 1.809µs ok <1.203s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::basic_queue_use_cases ... ok <0.000s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <28.040s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <3.970s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::multiple_producers_single_consumer ... 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 7234896 reported stack was full CONSUMPTION: 4096000 successful, 240 reported stack was empty ok <5.691s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::peek_test ... ok <0.000s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::single_producer_multiple_consumers ... 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 0 reports of 'full container' CONSUMPTIONS: 4096000 successful, 10578134 reports of 'empty container' ok <6.609s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::basic_queue_use_cases ... ok <0.000s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <12.348s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.198s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::multiple_producers_single_consumer ... 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 13584195 reported stack was full CONSUMPTION: 4096000 successful, 898 reported stack was empty ok <5.806s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::single_producer_multiple_consumers ... 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 0 reports of 'full container' CONSUMPTIONS: 4096000 successful, 13227288 reports of 'empty container' ok <6.034s> test ogre_std::ogre_stacks::blocking_stack::tests::basic_stack_use_cases ... ok <0.000s> test ogre_std::ogre_stacks::blocking_stack::tests::multiple_producers_and_consumers_all_in_and_out ... ok <13.555s> test ogre_std::ogre_stacks::blocking_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.473s> test ogre_std::ogre_stacks::blocking_stack::tests::multiple_producers_single_consumer ... 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 0 reported stack was full CONSUMPTION: 4096000 successful, 0 reported stack was empty ok <5.065s> test ogre_std::ogre_stacks::blocking_stack::tests::single_producer_multiple_consumers ... 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 0 reports of 'full container' CONSUMPTIONS: 4096000 successful, 0 reports of 'empty container' ok <4.731s> test ogre_std::ogre_stacks::non_blocking_atomic_stack::tests::basic_stack_use_cases ... ok <0.000s> test ogre_std::ogre_stacks::non_blocking_atomic_stack::tests::multiple_producers_and_consumers_all_in_and_out ... ok <25.026s> test ogre_std::ogre_stacks::non_blocking_atomic_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <3.103s> test ogre_std::ogre_stacks::non_blocking_atomic_stack::tests::multiple_producers_single_consumer ... 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 7654042 reported stack was full CONSUMPTION: 4096000 successful, 639 reported stack was empty ok <5.321s> test ogre_std::ogre_stacks::non_blocking_atomic_stack::tests::single_producer_multiple_consumers ... 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 0 reports of 'full container' CONSUMPTIONS: 4096000 successful, 10173116 reports of 'empty container' ok <5.190s> test ogre_std::ogre_stacks::non_blocking_parking_lot_stack::tests::basic_stack_use_cases ... ok <0.000s> test ogre_std::ogre_stacks::non_blocking_parking_lot_stack::tests::multiple_producers_and_consumers_all_in_and_out ... ok <12.057s> test ogre_std::ogre_stacks::non_blocking_parking_lot_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.162s> test ogre_std::ogre_stacks::non_blocking_parking_lot_stack::tests::multiple_producers_single_consumer ... 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 12758104 reported stack was full CONSUMPTION: 4096000 successful, 345 reported stack was empty ok <5.779s> test ogre_std::ogre_stacks::non_blocking_parking_lot_stack::tests::single_producer_multiple_consumers ... 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 0 reports of 'full container' CONSUMPTIONS: 4096000 successful, 10986330 reports of 'empty container' ok <5.501s> test ogre_std::reference_counted_buffer_allocator::test::excessive_ref_decs - should panic ... 2023-03-18T07:04:18.345Z ERROR [reactive_mutiny::ogre_std::reference_counted_buffer_allocator] Calls to reference counted buffer allocator's ref_dec() superseded the expected amount thread 'ogre_std::reference_counted_buffer_allocator::test::excessive_ref_decs' panicked at 'Calls to reference counted buffer allocator's ref_dec() superseded the expected amount', src/ogre_std/reference_counted_buffer_allocator.rs:220:13 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace ok <0.000s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_logs_and_metrics ... 2023-03-18T07:04:18.346Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T07:04:18.346Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 35.02µs -- stats: | ok: 2 events ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 110.649µs ago Execution Start: 12.879µs after creation Execution Finish: 47.899µs after creation OK elements count: 2; OK elements average Future resolution time: -1s -- verify these values against the "executor closed" message TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- verify these values against the "executor closed" message FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- verify these values against the "executor closed" message ok <0.000s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_logs_and_no_metrics ... 2023-03-18T07:04:18.347Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Non-Futures / Non-Fallible Items & NO Metrics 2023-03-18T07:04:18.347Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 33.542µs -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 92.181µs ago Execution Start: 10.188µs after creation Execution Finish: 43.73µs after creation OK elements count: 0; OK elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message ok <0.000s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_metrics_and_no_logs ... ### Stats assertions for Stream pipeline executor named 'executor with metrics & NO logs' (Logs? false; Metrics? true) #### Creation time: 38.032µs ago Execution Start: 8.504µs after creation Execution Finish: 10.604µs after creation OK elements count: 2; OK elements average Future resolution time: -1s -- logs are DISABLED TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- logs are DISABLED FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- logs are DISABLED ok <0.000s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_no_logs_and_no_metrics ... ### Stats assertions for Stream pipeline executor named 'executor with NO logs & NO metrics' (Logs? false; Metrics? false) #### Creation time: 57.181µs ago Execution Start: 8.228µs after creation Execution Finish: 10.153µs after creation OK elements count: 0; OK elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED ok <0.000s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_logs_and_metrics ... 2023-03-18T07:04:18.348Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Futures (NO timeouts) / Fallible Items & Metrics 2023-03-18T07:04:18.348Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"17"' in 285ns 2023-03-18T07:04:18.500Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"19"' in 240ns 2023-03-18T07:04:18.651Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 303.118224ms -- stats: | ok: 4 events; avg 75.731263ms - 13.19617/sec | failed: 2 events; avg 263ns - 6.59809/sec ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 303.255022ms ago Execution Start: 11.797µs after creation Execution Finish: 303.130021ms after creation OK elements count: 4; OK elements average Future resolution time: 0.07573126s -- verify these values against the "executor closed" message TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- verify these values against the "executor closed" message FAILED elements count: 2; FAILED elements average Future resolution time: 0.0000002625s -- verify these values against the "executor closed" message ok <0.303s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_logs_and_no_metrics ... 2023-03-18T07:04:18.652Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Futures (NO timeouts) / Fallible Items & NO Metrics 2023-03-18T07:04:18.652Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"17"' 2023-03-18T07:04:18.804Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"19"' 2023-03-18T07:04:18.955Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 303.051231ms -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 303.179133ms ago Execution Start: 13.816µs after creation Execution Finish: 303.065047ms after creation OK elements count: 0; OK elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message ok <0.303s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_metrics_and_no_logs ... ### Stats assertions for Stream pipeline executor named 'executor with metrics & NO logs' (Logs? false; Metrics? true) #### Creation time: 303.019292ms ago Execution Start: 13.741µs after creation Execution Finish: 302.955004ms after creation OK elements count: 4; OK elements average Future resolution time: 0.07573069s -- logs are DISABLED TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- logs are DISABLED FAILED elements count: 2; FAILED elements average Future resolution time: 0.00000025s -- logs are DISABLED ok <0.303s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_no_logs_and_no_metrics ... ### Stats assertions for Stream pipeline executor named 'executor with NO logs & NO metrics' (Logs? false; Metrics? false) #### Creation time: 302.883861ms ago Execution Start: 13.155µs after creation Execution Finish: 302.824259ms after creation OK elements count: 0; OK elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED ok <0.303s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_logs_and_metrics ... 2023-03-18T07:04:19.563Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Futures (with timeouts of 100ms) / Fallible Items & Metrics 2023-03-18T07:04:19.563Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"17"' in 741ns 2023-03-18T07:04:19.665Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & metrics' TIMED OUT after 101.392152ms 2023-03-18T07:04:19.665Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"19"' in 851ns 2023-03-18T07:04:19.766Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & metrics' TIMED OUT after 101.418562ms 2023-03-18T07:04:19.766Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 203.145918ms -- stats: | ok: 2 events; avg 4.888µs - 9.84514/sec | time out: 2 events; avg 101.405352ms - 9.84514/sec | failed: 2 events; avg 796ns - 9.84514/sec ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 203.249075ms ago Execution Start: 14.398µs after creation Execution Finish: 203.160316ms after creation OK elements count: 2; OK elements average Future resolution time: 0.0000048885s -- verify these values against the "executor closed" message TIMED OUT elements count: 2; TIMED OUT elements average Future resolution time: 0.10140535s -- verify these values against the "executor closed" message FAILED elements count: 2; FAILED elements average Future resolution time: 0.000000796s -- verify these values against the "executor closed" message ok <0.203s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_logs_and_no_metrics ... 2023-03-18T07:04:19.767Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Futures (with timeouts of 100ms) / Fallible Items & NO Metrics 2023-03-18T07:04:19.767Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"17"' 2023-03-18T07:04:19.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & NO metrics' TIMED OUT 2023-03-18T07:04:19.869Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"19"' 2023-03-18T07:04:19.970Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & NO metrics' TIMED OUT 2023-03-18T07:04:19.970Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 203.116972ms -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 203.210797ms ago Execution Start: 14.643µs after creation Execution Finish: 203.131615ms after creation OK elements count: 0; OK elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message ok <0.203s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_metrics_and_no_logs ... ### Stats assertions for Stream pipeline executor named 'executor with metrics & NO logs' (Logs? false; Metrics? true) #### Creation time: 202.956469ms ago Execution Start: 15.119µs after creation Execution Finish: 202.892116ms after creation OK elements count: 2; OK elements average Future resolution time: 0.000003535s -- logs are DISABLED TIMED OUT elements count: 2; TIMED OUT elements average Future resolution time: 0.10142447s -- logs are DISABLED FAILED elements count: 2; FAILED elements average Future resolution time: 0.00000069099997s -- logs are DISABLED ok <0.203s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_no_logs_and_no_metrics ... ### Stats assertions for Stream pipeline executor named 'executor with NO logs & NO metrics' (Logs? false; Metrics? false) #### Creation time: 202.9223ms ago Execution Start: 12.914µs after creation Execution Finish: 202.858694ms after creation OK elements count: 0; OK elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED ok <0.203s> test uni::channels::tests::atomic_mpmc_queue_doc_test ... receiving: Some("a") ok <0.000s> test uni::channels::tests::atomic_mpmc_queue_dropping ... Dropping the channel before the stream consumes the element: receiving: Some("a") Dropping the stream before the channel produces something, then another stream is created to consume the element: receiving: Some("a") ok <0.000s> test uni::channels::tests::atomic_mpmc_queue_parallel_streams ... receiving on stream #0: Some(0) receiving on stream #1: Some(1) receiving on stream #2: Some(2) receiving on stream #3: Some(3) receiving on stream #4: Some(4) receiving on stream #5: Some(5) receiving on stream #6: Some(6) receiving on stream #7: Some(7) receiving on stream #8: Some(8) receiving on stream #9: Some(9) receiving on stream #10: Some(10) receiving on stream #11: Some(11) receiving on stream #12: Some(12) receiving on stream #13: Some(13) receiving on stream #14: Some(14) receiving on stream #15: Some(15) receiving on stream #16: Some(16) receiving on stream #17: Some(17) receiving on stream #18: Some(18) receiving on stream #19: Some(19) receiving on stream #20: Some(20) receiving on stream #21: Some(21) receiving on stream #22: Some(22) receiving on stream #23: Some(23) receiving on stream #24: Some(24) receiving on stream #25: Some(25) receiving on stream #26: Some(26) receiving on stream #27: Some(27) receiving on stream #28: Some(28) receiving on stream #29: Some(29) receiving on stream #30: Some(30) receiving on stream #31: Some(31) receiving on stream #32: Some(32) receiving on stream #33: Some(33) receiving on stream #34: Some(34) receiving on stream #35: Some(35) receiving on stream #36: Some(36) receiving on stream #37: Some(37) receiving on stream #38: Some(38) receiving on stream #39: Some(39) receiving on stream #40: Some(40) receiving on stream #41: Some(41) receiving on stream #42: Some(42) receiving on stream #43: Some(43) receiving on stream #44: Some(44) receiving on stream #45: Some(45) receiving on stream #46: Some(46) receiving on stream #47: Some(47) receiving on stream #48: Some(48) receiving on stream #49: Some(49) receiving on stream #50: Some(50) receiving on stream #51: Some(51) receiving on stream #52: Some(52) receiving on stream #53: Some(53) receiving on stream #54: Some(54) receiving on stream #55: Some(55) receiving on stream #56: Some(56) receiving on stream #57: Some(57) receiving on stream #58: Some(58) receiving on stream #59: Some(59) receiving on stream #60: Some(60) receiving on stream #61: Some(61) receiving on stream #62: Some(62) receiving on stream #63: Some(63) receiving on stream #64: Some(64) receiving on stream #65: Some(65) receiving on stream #66: Some(66) receiving on stream #67: Some(67) receiving on stream #68: Some(68) receiving on stream #69: Some(69) receiving on stream #70: Some(70) receiving on stream #71: Some(71) receiving on stream #72: Some(72) receiving on stream #73: Some(73) receiving on stream #74: Some(74) receiving on stream #75: Some(75) receiving on stream #76: Some(76) receiving on stream #77: Some(77) receiving on stream #78: Some(78) receiving on stream #79: Some(79) receiving on stream #80: Some(80) receiving on stream #81: Some(81) receiving on stream #82: Some(82) receiving on stream #83: Some(83) receiving on stream #84: Some(84) receiving on stream #85: Some(85) receiving on stream #86: Some(86) receiving on stream #87: Some(87) receiving on stream #88: Some(88) receiving on stream #89: Some(89) receiving on stream #90: Some(90) receiving on stream #91: Some(91) receiving on stream #92: Some(92) receiving on stream #93: Some(93) receiving on stream #94: Some(94) receiving on stream #95: Some(95) receiving on stream #96: Some(96) receiving on stream #97: Some(97) receiving on stream #98: Some(98) receiving on stream #99: Some(99) ok <1.100s> test uni::channels::tests::mutex_mpmc_queue_doc_test ... receiving: Some("a") ok <0.000s> test uni::channels::tests::mutex_mpmc_queue_dropping ... Dropping the channel before the stream consumes the element: receiving: Some("a") Dropping the stream before the channel produces something, then another stream is created to consume the element: receiving: Some("a") ok <0.000s> test uni::channels::tests::mutex_mpmc_queue_parallel_streams ... receiving on stream #0: Some(0) receiving on stream #1: Some(1) receiving on stream #2: Some(2) receiving on stream #3: Some(3) receiving on stream #4: Some(4) receiving on stream #5: Some(5) receiving on stream #6: Some(6) receiving on stream #7: Some(7) receiving on stream #8: Some(8) receiving on stream #9: Some(9) receiving on stream #10: Some(10) receiving on stream #11: Some(11) receiving on stream #12: Some(12) receiving on stream #13: Some(13) receiving on stream #14: Some(14) receiving on stream #15: Some(15) receiving on stream #16: Some(16) receiving on stream #17: Some(17) receiving on stream #18: Some(18) receiving on stream #19: Some(19) receiving on stream #20: Some(20) receiving on stream #21: Some(21) receiving on stream #22: Some(22) receiving on stream #23: Some(23) receiving on stream #24: Some(24) receiving on stream #25: Some(25) receiving on stream #26: Some(26) receiving on stream #27: Some(27) receiving on stream #28: Some(28) receiving on stream #29: Some(29) receiving on stream #30: Some(30) receiving on stream #31: Some(31) receiving on stream #32: Some(32) receiving on stream #33: Some(33) receiving on stream #34: Some(34) receiving on stream #35: Some(35) receiving on stream #36: Some(36) receiving on stream #37: Some(37) receiving on stream #38: Some(38) receiving on stream #39: Some(39) receiving on stream #40: Some(40) receiving on stream #41: Some(41) receiving on stream #42: Some(42) receiving on stream #43: Some(43) receiving on stream #44: Some(44) receiving on stream #45: Some(45) receiving on stream #46: Some(46) receiving on stream #47: Some(47) receiving on stream #48: Some(48) receiving on stream #49: Some(49) receiving on stream #50: Some(50) receiving on stream #51: Some(51) receiving on stream #52: Some(52) receiving on stream #53: Some(53) receiving on stream #54: Some(54) receiving on stream #55: Some(55) receiving on stream #56: Some(56) receiving on stream #57: Some(57) receiving on stream #58: Some(58) receiving on stream #59: Some(59) receiving on stream #60: Some(60) receiving on stream #61: Some(61) receiving on stream #62: Some(62) receiving on stream #63: Some(63) receiving on stream #64: Some(64) receiving on stream #65: Some(65) receiving on stream #66: Some(66) receiving on stream #67: Some(67) receiving on stream #68: Some(68) receiving on stream #69: Some(69) receiving on stream #70: Some(70) receiving on stream #71: Some(71) receiving on stream #72: Some(72) receiving on stream #73: Some(73) receiving on stream #74: Some(74) receiving on stream #75: Some(75) receiving on stream #76: Some(76) receiving on stream #77: Some(77) receiving on stream #78: Some(78) receiving on stream #79: Some(79) receiving on stream #80: Some(80) receiving on stream #81: Some(81) receiving on stream #82: Some(82) receiving on stream #83: Some(83) receiving on stream #84: Some(84) receiving on stream #85: Some(85) receiving on stream #86: Some(86) receiving on stream #87: Some(87) receiving on stream #88: Some(88) receiving on stream #89: Some(89) receiving on stream #90: Some(90) receiving on stream #91: Some(91) receiving on stream #92: Some(92) receiving on stream #93: Some(93) receiving on stream #94: Some(94) receiving on stream #95: Some(95) receiving on stream #96: Some(96) receiving on stream #97: Some(97) receiving on stream #98: Some(98) receiving on stream #99: Some(99) ok <1.117s> test uni::channels::tests::performance_measurements ... TokioMPSC (same task / same thread): 2494294.84/s -- 10485760 items processed in 4.203897564s TokioMPSC (different task / same thread): 2438892.63/s -- 10485760 items processed in 4.299393862s TokioMPSC (different task / different thread): 1517944.02/s -- 10485760 items processed in 6.907870011s AtomicMPMCQueue (same task / same thread): 6367571.16/s -- 10485760 items processed in 1.646744063s AtomicMPMCQueue (different task / same thread): 6498477.51/s -- 10485760 items processed in 1.613571792s AtomicMPMCQueue (different task / different thread): 2481610.09/s -- 10485760 items processed in 4.225385781s OgreMPMCQueue (same task / same thread): 7738528.78/s -- 10485760 items processed in 1.355006914s OgreMPMCQueue (different task / same thread): 5543964.79/s -- 10485760 items processed in 1.891382864s OgreMPMCQueue (different task / different thread): 4238668.21/s -- 10485760 items processed in 2.47383364s ok <28.619s> test uni::channels::tests::tokio_mpsc_queue_doc_test ... receiving: Some("a") ok <0.000s> test uni::tests::async_elements ... 2023-03-18T07:04:51.218Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'async_elements() Event' started: Futures (with timeouts of 2s) / Fallible Items & Metrics Just added # 9 Just added # 8 Just added # 7 Just added # 6 2023-03-18T07:04:52.219Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async_elements() Event' ended after running for 1.001232145s -- stats: | ok: 4 events; avg 1.001130462s - 3.99508/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 0 events; avg 0ns - 0.00000/sec ok <1.006s> test uni::tests::demux ... 2023-03-18T07:04:52.224Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T07:04:52.224Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T07:04:52.224Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T07:04:52.226Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO event' ended after running for 2.289822ms -- stats: | ok: 4 events 2023-03-18T07:04:52.328Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR event' ended after running for 103.63886ms -- stats: | ok: 6 events ok <0.108s> test uni::tests::doc_tests ... 2023-03-18T07:04:52.333Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'doc_test() Event' started: Non-Futures / Non-Fallible Items & Metrics To Zeta: 'I've just arrived!' EARTH: Sneak peeked a message to Zeta Reticuli: 'I've just arrived!' ZETA: Received a message: 'I've just arrived!' To Zeta: 'Nothing really interesting here... heading back home!' EARTH: Sneak peeked a message to Zeta Reticuli: 'Nothing really interesting here... heading back home!' ZETA: Received a message: 'Nothing really interesting here... heading back home!' 2023-03-18T07:04:52.335Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() Event' ended after running for 2.199335ms -- stats: | ok: 2 events ok <0.007s> test uni::tests::error_handling ... 2023-03-18T07:04:52.340Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'fallible event' started: Futures (with timeouts of 100ms) / Fallible Items & Metrics Payload 0 ACCURATELY PROCESSED! Payload 0 continued down the pipe Payload ODD payload received: 1 ERROR LOG -- this error is tolerable and this event will be skipped for the rest of the pipeline Payload 2 ACCURATELY PROCESSED! Payload 2 continued down the pipe 2023-03-18T07:04:52.340Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'fallible event' yielded ERROR '"BLOW CODE received: 79"' in 1.117µs ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-18T07:04:52.343Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'fallible event' ended after running for 2.340148ms -- stats: | ok: 3 events; avg 5.691µs - 1281.97020/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 1.117µs - 427.32340/sec ok <0.007s> test uni::tests::performance_measurements ... metricfull_non_futures_non_fallible_uni: 1164042.94/s -- 8388608 items processed in 7.206442027s metricless_non_futures_non_fallible_uni: 1236658.30/s -- 8388608 items processed in 6.783286866s par_metricless_non_futures_non_fallible_uni: 1104120.87/s -- 8388608 items processed in 7.597545001s metricfull_futures_fallible_uni: 1419043.55/s -- 8388608 items processed in 5.911452123s metricless_futures_fallible_uni: 1052194.63/s -- 8388608 items processed in 7.972486991s timeoutable_metricfull_futures_fallible_uni: 982622.69/s -- 6291456 items processed in 6.402718034s timeoutable_metricless_futures_fallible_uni: 1247491.11/s -- 6291456 items processed in 5.043287257s ok <46.919s> test uni::tests::simple_pipeline ... 2023-03-18T07:05:39.267Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'simple_pipeline() Event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T07:05:39.270Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'simple_pipeline() Event' ended after running for 2.239337ms -- stats: | ok: 2 events ok <0.007s> test uni::tests::stats ... 2023-03-18T07:05:39.275Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-18T07:05:39.277Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event' ended after running for 2.218644ms -- stats: | ok: 1 events 2023-03-18T07:05:39.281Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-18T07:05:39.434Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.230913ms 2023-03-18T07:05:39.585Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event' TIMED OUT after 151.213005ms 2023-03-18T07:05:39.737Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.83316ms 2023-03-18T07:05:39.889Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event' TIMED OUT after 151.924422ms 2023-03-18T07:05:39.889Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event' ended after running for 607.504456ms -- stats: | ok: 2 events; avg 100.936562ms - 3.29216/sec | time out: 2 events; avg 151.568711ms - 3.29216/sec | failed: 2 events; avg 51.032037ms - 3.29216/sec ok <0.619s> test result: ok. 91 passed; 0 failed; 8 ignored; 0 measured; 0 filtered out; finished in 413.38s Doc-tests reactive-mutiny running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s