Compiling reactive-mutiny v0.1.0 (/tmp/reactive-mutiny) 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 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:21:8 | 21 | 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:49:8 | 49 | 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:75:8 | 75 | 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:128:8 | 128 | pub fn multiple_producers_single_consumer_benchmark(container: &(dyn BenchmarkableContainer + Sync), threads: usize, deadline: Dur... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `keep_looping_or_compute_operations_per_second` is never used --> src/ogre_std/benchmarks.rs:185:4 | 185 | fn keep_looping_or_compute_operations_per_second(benchmark_name: String, start_time: &SystemTime, iterations: &mut u64, deadline: &Durati... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `multi_threaded_iterate` is never used --> src/ogre_std/benchmarks.rs:201:8 | 201 | 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:214:4 | 214 | 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/container_instruments.rs:44:18 | 44 | 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 29 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 7 warnings (6 duplicates) Finished release [optimized] target(s) in 18.47s Running unittests src/lib.rs (target/release/deps/reactive_mutiny-512fe0bf04487fca) --> LOGGER WAS ALREADY STARTED --> LOGGER WAS ALREADY STARTED 2023-03-06T17:54:43.412Z 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 <0.200s> test multi::channels::ogre_mpmc_queue::tests::doc_test ... received: a ok <0.000s> 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.117s> 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.015s> test multi::channels::ogre_mpmc_queue::tests::payload_dropping ... ok <0.000s> test multi::channels::ogre_mpmc_queue::tests::performance_measurements ... OgreMPMCQueue (same task / same thread): 25884910.84/s -- 10485760 items processed in 405.091602ms OgreMPMCQueue (different task / same thread): 7670940.18/s -- 10485760 items processed in 1.36694587s OgreMPMCQueue (different task / different thread): 16785462.15/s -- 10485760 items processed in 624.692958ms ok <2.398s> 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.000s> test multi::tests::async_elements ... 2023-03-06T17:54:47.272Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'async event: Stream Pipeline #1' started: Futures (with timeouts of 2s) / Fallible Items & Metrics 2023-03-06T17:54:47.272Z 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-06T17:54:48.274Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async event: Stream Pipeline #1' ended after running for 1.00166477s -- stats: | ok: 4 events; avg 1.001641393s - 3.99335/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-06T17:54:48.274Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async event: Stream Pipeline #2' ended after running for 1.001659895s -- stats: | ok: 4 events; avg 1.00164938s - 3.99337/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 0 events; avg 0ns - 0.00000/sec ok <1.006s> test multi::tests::delete_pipelines ... 2023-03-06T17:54:48.278Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.278Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 9.657µs -- stats: | ok: 0 events 2023-03-06T17:54:48.278Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.280Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.065365ms -- stats: | ok: 0 events 2023-03-06T17:54:48.282Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.282Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.691µs -- stats: | ok: 0 events 2023-03-06T17:54:48.285Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.285Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 4.775µs -- stats: | ok: 0 events 2023-03-06T17:54:48.285Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.287Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.059832ms -- stats: | ok: 0 events 2023-03-06T17:54:48.289Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.289Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 2.783µs -- stats: | ok: 0 events 2023-03-06T17:54:48.289Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.291Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.058549ms -- stats: | ok: 0 events 2023-03-06T17:54:48.293Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.293Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 5.833µs -- stats: | ok: 0 events 2023-03-06T17:54:48.293Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.295Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.078656ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.297Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.872µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.299Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.068302ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.301Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 48.494µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.302Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.067391ms -- stats: | ok: 0 events 2023-03-06T17:54:48.304Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.305Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 21.679µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.307Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.065315ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.309Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 7.547µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.311Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.096051ms -- stats: | ok: 0 events 2023-03-06T17:54:48.313Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.313Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 32.029µs -- stats: | ok: 0 events 2023-03-06T17:54:48.313Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.315Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.066285ms -- stats: | ok: 0 events 2023-03-06T17:54:48.317Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.317Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.445µs -- stats: | ok: 0 events 2023-03-06T17:54:48.317Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.319Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.096882ms -- stats: | ok: 0 events 2023-03-06T17:54:48.321Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.321Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.984µs -- stats: | ok: 0 events 2023-03-06T17:54:48.321Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.323Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.083567ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.326Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.254µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.328Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.067833ms -- stats: | ok: 0 events 2023-03-06T17:54:48.330Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.330Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.16µs -- stats: | ok: 0 events 2023-03-06T17:54:48.330Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.332Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.064566ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.334Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 41.608µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.336Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.063161ms -- stats: | ok: 0 events 2023-03-06T17:54:48.338Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.338Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 32.151µs -- stats: | ok: 0 events 2023-03-06T17:54:48.338Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.340Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.161572ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.343Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.15µs -- stats: | ok: 0 events 2023-03-06T17:54:48.343Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.345Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.062991ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.347Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.006µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.349Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.089162ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.351Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.294µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.353Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.085959ms -- stats: | ok: 0 events 2023-03-06T17:54:48.355Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 51.982µs -- stats: | ok: 0 events 2023-03-06T17:54:48.355Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.282218ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.360Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.337µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.362Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090659ms -- stats: | ok: 0 events 2023-03-06T17:54:48.364Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.364Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.731µs -- stats: | ok: 0 events 2023-03-06T17:54:48.364Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.274793ms -- stats: | ok: 0 events 2023-03-06T17:54:48.368Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.368Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.432µs -- stats: | ok: 0 events 2023-03-06T17:54:48.368Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.370Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.126959ms -- stats: | ok: 0 events 2023-03-06T17:54:48.373Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.373Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.083µs -- stats: | ok: 0 events 2023-03-06T17:54:48.373Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.375Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.064413ms -- stats: | ok: 0 events 2023-03-06T17:54:48.377Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.377Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.036µs -- stats: | ok: 0 events 2023-03-06T17:54:48.377Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.379Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.064824ms -- stats: | ok: 0 events 2023-03-06T17:54:48.381Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.381Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.306µs -- stats: | ok: 0 events 2023-03-06T17:54:48.381Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.383Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.083062ms -- stats: | ok: 0 events 2023-03-06T17:54:48.385Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.385Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.648µs -- stats: | ok: 0 events 2023-03-06T17:54:48.385Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.387Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.272643ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.390Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.155µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.392Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.083991ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.394Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 11.943µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.396Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.083248ms -- stats: | ok: 0 events 2023-03-06T17:54:48.398Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.398Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.356µs -- stats: | ok: 0 events 2023-03-06T17:54:48.398Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.400Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.279398ms -- stats: | ok: 0 events 2023-03-06T17:54:48.403Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.403Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.749µs -- stats: | ok: 0 events 2023-03-06T17:54:48.403Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.405Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.09132ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.407Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.746µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.409Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.166142ms -- stats: | ok: 0 events 2023-03-06T17:54:48.411Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.411Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.294µs -- stats: | ok: 0 events 2023-03-06T17:54:48.411Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.414Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.284105ms -- stats: | ok: 0 events 2023-03-06T17:54:48.416Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.416Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.453µs -- stats: | ok: 0 events 2023-03-06T17:54:48.416Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.418Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.091321ms -- stats: | ok: 0 events 2023-03-06T17:54:48.420Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.420Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 34.625µs -- stats: | ok: 0 events 2023-03-06T17:54:48.420Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.422Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.066816ms -- stats: | ok: 0 events 2023-03-06T17:54:48.424Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.424Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.18µs -- stats: | ok: 0 events 2023-03-06T17:54:48.424Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.426Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.096491ms -- stats: | ok: 0 events 2023-03-06T17:54:48.428Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.428Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.106µs -- stats: | ok: 0 events 2023-03-06T17:54:48.428Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.431Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.066914ms -- stats: | ok: 0 events 2023-03-06T17:54:48.433Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.433Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.243µs -- stats: | ok: 0 events 2023-03-06T17:54:48.433Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.435Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.064591ms -- stats: | ok: 0 events 2023-03-06T17:54:48.437Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.437Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.319µs -- stats: | ok: 0 events 2023-03-06T17:54:48.437Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.439Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.138555ms -- stats: | ok: 0 events 2023-03-06T17:54:48.441Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.441Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 43.817µs -- stats: | ok: 0 events 2023-03-06T17:54:48.441Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.443Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.089444ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.445Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.475µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.448Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.254936ms -- stats: | ok: 0 events 2023-03-06T17:54:48.450Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.450Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.98µs -- stats: | ok: 0 events 2023-03-06T17:54:48.450Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.452Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.084517ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.454Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 15.721µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.456Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.142969ms -- stats: | ok: 0 events 2023-03-06T17:54:48.458Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.459Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.46µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.461Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.130023ms -- stats: | ok: 0 events 2023-03-06T17:54:48.463Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.463Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.851µs -- stats: | ok: 0 events 2023-03-06T17:54:48.463Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.465Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.126582ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.467Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.426µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.469Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.280732ms -- stats: | ok: 0 events 2023-03-06T17:54:48.472Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.472Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.116µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.474Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.083988ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.476Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.378µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.478Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.097497ms -- stats: | ok: 0 events 2023-03-06T17:54:48.480Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.480Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 5.987µs -- stats: | ok: 0 events 2023-03-06T17:54:48.480Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.482Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.096509ms -- stats: | ok: 0 events 2023-03-06T17:54:48.484Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.484Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.024µs -- stats: | ok: 0 events 2023-03-06T17:54:48.484Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.486Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.06492ms -- stats: | ok: 0 events 2023-03-06T17:54:48.489Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.489Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.428µs -- stats: | ok: 0 events 2023-03-06T17:54:48.489Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.491Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.0923ms -- stats: | ok: 0 events 2023-03-06T17:54:48.493Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.493Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.085µs -- stats: | ok: 0 events 2023-03-06T17:54:48.493Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.495Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.131207ms -- stats: | ok: 0 events 2023-03-06T17:54:48.497Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.497Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 56.77µs -- stats: | ok: 0 events 2023-03-06T17:54:48.497Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.500Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.282955ms -- stats: | ok: 0 events 2023-03-06T17:54:48.502Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 11.647µs -- stats: | ok: 0 events 2023-03-06T17:54:48.502Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.504Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.08159ms -- stats: | ok: 0 events 2023-03-06T17:54:48.506Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.506Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.918µs -- stats: | ok: 0 events 2023-03-06T17:54:48.506Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.508Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.134223ms -- stats: | ok: 0 events 2023-03-06T17:54:48.510Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.510Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 48.639µs -- stats: | ok: 0 events 2023-03-06T17:54:48.510Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.285771ms -- stats: | ok: 0 events 2023-03-06T17:54:48.515Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.515Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.033µs -- stats: | ok: 0 events 2023-03-06T17:54:48.515Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.517Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090403ms -- stats: | ok: 0 events 2023-03-06T17:54:48.519Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.519Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.247µs -- stats: | ok: 0 events 2023-03-06T17:54:48.519Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.159104ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.523Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.389µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.526Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.287269ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.528Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.769µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.530Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.080683ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.532Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.196µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.534Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.098311ms -- stats: | ok: 0 events 2023-03-06T17:54:48.536Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.012µs -- stats: | ok: 0 events 2023-03-06T17:54:48.536Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.538Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.098771ms -- stats: | ok: 0 events 2023-03-06T17:54:48.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.540Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.136µs -- stats: | ok: 0 events 2023-03-06T17:54:48.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.543Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.064278ms -- stats: | ok: 0 events 2023-03-06T17:54:48.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.545Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.116µs -- stats: | ok: 0 events 2023-03-06T17:54:48.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.547Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.051739ms -- stats: | ok: 0 events 2023-03-06T17:54:48.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.549Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.332µs -- stats: | ok: 0 events 2023-03-06T17:54:48.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.551Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.089043ms -- stats: | ok: 0 events 2023-03-06T17:54:48.553Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.553Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 32.518µs -- stats: | ok: 0 events 2023-03-06T17:54:48.553Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.555Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.196176ms -- stats: | ok: 0 events 2023-03-06T17:54:48.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.557Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.469µs -- stats: | ok: 0 events 2023-03-06T17:54:48.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.560Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.186792ms -- stats: | ok: 0 events 2023-03-06T17:54:48.562Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.562Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.057µs -- stats: | ok: 0 events 2023-03-06T17:54:48.562Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.564Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090317ms -- stats: | ok: 0 events 2023-03-06T17:54:48.566Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.566Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 7.436µs -- stats: | ok: 0 events 2023-03-06T17:54:48.566Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.568Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.2815ms -- stats: | ok: 0 events 2023-03-06T17:54:48.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.571Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.043µs -- stats: | ok: 0 events 2023-03-06T17:54:48.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.573Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.076814ms -- stats: | ok: 0 events 2023-03-06T17:54:48.575Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.575Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.518µs -- stats: | ok: 0 events 2023-03-06T17:54:48.575Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.577Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.083802ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.513µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.581Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.140808ms -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 8.289µs -- stats: | ok: 0 events 2023-03-06T17:54:48.583Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.585Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.097672ms -- stats: | ok: 0 events 2023-03-06T17:54:48.587Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.11µs -- stats: | ok: 0 events 2023-03-06T17:54:48.587Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.589Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.023017ms -- stats: | ok: 0 events 2023-03-06T17:54:48.592Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.592Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.465µs -- stats: | ok: 0 events 2023-03-06T17:54:48.592Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.065029ms -- stats: | ok: 0 events 2023-03-06T17:54:48.596Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.596Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.089µs -- stats: | ok: 0 events 2023-03-06T17:54:48.596Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.598Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.063872ms -- stats: | ok: 0 events 2023-03-06T17:54:48.600Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.334µs -- stats: | ok: 0 events 2023-03-06T17:54:48.600Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.602Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.125012ms -- stats: | ok: 0 events 2023-03-06T17:54:48.604Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.604Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.519µs -- stats: | ok: 0 events 2023-03-06T17:54:48.604Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.270131ms -- stats: | ok: 0 events 2023-03-06T17:54:48.609Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.609Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.27µs -- stats: | ok: 0 events 2023-03-06T17:54:48.609Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.611Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.06931ms -- stats: | ok: 0 events 2023-03-06T17:54:48.613Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.613Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.168µs -- stats: | ok: 0 events 2023-03-06T17:54:48.613Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.615Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.158862ms -- stats: | ok: 0 events 2023-03-06T17:54:48.617Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.617Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.25µs -- stats: | ok: 0 events 2023-03-06T17:54:48.617Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.620Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.216731ms -- stats: | ok: 0 events 2023-03-06T17:54:48.622Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.622Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 11.071µs -- stats: | ok: 0 events 2023-03-06T17:54:48.622Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.624Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.108968ms -- stats: | ok: 0 events 2023-03-06T17:54:48.626Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.626Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.202µs -- stats: | ok: 0 events 2023-03-06T17:54:48.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-06T17:54:48.628Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.111757ms -- stats: | ok: 0 events 2023-03-06T17:54:48.630Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.630Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 15.35µs -- stats: | ok: 0 events 2023-03-06T17:54:48.630Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.633Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.092383ms -- stats: | ok: 0 events 2023-03-06T17:54:48.635Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.635Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.649µs -- stats: | ok: 0 events 2023-03-06T17:54:48.635Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.637Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.063591ms -- stats: | ok: 0 events 2023-03-06T17:54:48.639Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.639Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.059µs -- stats: | ok: 0 events 2023-03-06T17:54:48.639Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.641Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.064668ms -- stats: | ok: 0 events 2023-03-06T17:54:48.643Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.643Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 5.879µs -- stats: | ok: 0 events 2023-03-06T17:54:48.643Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.645Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.09639ms -- stats: | ok: 0 events 2023-03-06T17:54:48.647Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.647Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 5.965µs -- stats: | ok: 0 events 2023-03-06T17:54:48.647Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.649Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.097153ms -- stats: | ok: 0 events 2023-03-06T17:54:48.651Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.651Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 15.035µs -- stats: | ok: 0 events 2023-03-06T17:54:48.651Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.653Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.063127ms -- stats: | ok: 0 events 2023-03-06T17:54:48.656Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.656Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.46µs -- stats: | ok: 0 events 2023-03-06T17:54:48.656Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.658Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090618ms -- stats: | ok: 0 events 2023-03-06T17:54:48.660Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.660Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.365µs -- stats: | ok: 0 events 2023-03-06T17:54:48.660Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.662Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.138037ms -- stats: | ok: 0 events 2023-03-06T17:54:48.665Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.665Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.01µs -- stats: | ok: 0 events 2023-03-06T17:54:48.665Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.667Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.101145ms -- stats: | ok: 0 events 2023-03-06T17:54:48.669Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.669Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 11.814µs -- stats: | ok: 0 events 2023-03-06T17:54:48.669Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.671Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090331ms -- stats: | ok: 0 events 2023-03-06T17:54:48.673Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.673Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.996µs -- stats: | ok: 0 events 2023-03-06T17:54:48.673Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.675Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.151842ms -- stats: | ok: 0 events 2023-03-06T17:54:48.677Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.677Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.125µs -- stats: | ok: 0 events 2023-03-06T17:54:48.677Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.679Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.277871ms -- stats: | ok: 0 events 2023-03-06T17:54:48.681Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.681Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.075µs -- stats: | ok: 0 events 2023-03-06T17:54:48.681Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.683Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090861ms -- stats: | ok: 0 events 2023-03-06T17:54:48.685Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.685Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.56µs -- stats: | ok: 0 events 2023-03-06T17:54:48.685Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.687Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.273591ms -- stats: | ok: 0 events 2023-03-06T17:54:48.690Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.690Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.136µs -- stats: | ok: 0 events 2023-03-06T17:54:48.690Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.692Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.110327ms -- stats: | ok: 0 events 2023-03-06T17:54:48.694Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.694Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 11.771µs -- stats: | ok: 0 events 2023-03-06T17:54:48.694Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.696Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.065757ms -- stats: | ok: 0 events 2023-03-06T17:54:48.698Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.698Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.011µs -- stats: | ok: 0 events 2023-03-06T17:54:48.698Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.700Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.100956ms -- stats: | ok: 0 events 2023-03-06T17:54:48.702Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.702Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.01µs -- stats: | ok: 0 events 2023-03-06T17:54:48.702Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.704Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.063826ms -- stats: | ok: 0 events 2023-03-06T17:54:48.706Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.706Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 5.997µs -- stats: | ok: 0 events 2023-03-06T17:54:48.706Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.709Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.277388ms -- stats: | ok: 0 events 2023-03-06T17:54:48.711Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.711Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.044µs -- stats: | ok: 0 events 2023-03-06T17:54:48.711Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.713Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090908ms -- stats: | ok: 0 events 2023-03-06T17:54:48.715Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.715Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 41.525µs -- stats: | ok: 0 events 2023-03-06T17:54:48.715Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.717Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.08361ms -- stats: | ok: 0 events 2023-03-06T17:54:48.719Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.719Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 56.274µs -- stats: | ok: 0 events 2023-03-06T17:54:48.719Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.721Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.282382ms -- stats: | ok: 0 events 2023-03-06T17:54:48.723Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.723Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.84µs -- stats: | ok: 0 events 2023-03-06T17:54:48.723Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.725Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090196ms -- stats: | ok: 0 events 2023-03-06T17:54:48.727Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.727Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.495µs -- stats: | ok: 0 events 2023-03-06T17:54:48.727Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.729Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.134325ms -- stats: | ok: 0 events 2023-03-06T17:54:48.731Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.731Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.096µs -- stats: | ok: 0 events 2023-03-06T17:54:48.731Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.734Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.253384ms -- stats: | ok: 0 events 2023-03-06T17:54:48.736Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.736Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.598µs -- stats: | ok: 0 events 2023-03-06T17:54:48.736Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.738Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.143641ms -- stats: | ok: 0 events 2023-03-06T17:54:48.740Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.740Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 47.863µs -- stats: | ok: 0 events 2023-03-06T17:54:48.740Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.287378ms -- stats: | ok: 0 events 2023-03-06T17:54:48.745Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.745Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 9.983µs -- stats: | ok: 0 events 2023-03-06T17:54:48.745Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.747Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.066265ms -- stats: | ok: 0 events 2023-03-06T17:54:48.749Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.749Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.012µs -- stats: | ok: 0 events 2023-03-06T17:54:48.749Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.751Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.064553ms -- stats: | ok: 0 events 2023-03-06T17:54:48.753Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.753Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.021µs -- stats: | ok: 0 events 2023-03-06T17:54:48.753Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.755Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.064833ms -- stats: | ok: 0 events 2023-03-06T17:54:48.757Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.757Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.134µs -- stats: | ok: 0 events 2023-03-06T17:54:48.757Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.759Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.064578ms -- stats: | ok: 0 events 2023-03-06T17:54:48.761Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.761Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.357µs -- stats: | ok: 0 events 2023-03-06T17:54:48.761Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.764Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.246001ms -- stats: | ok: 0 events 2023-03-06T17:54:48.766Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.766Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.547µs -- stats: | ok: 0 events 2023-03-06T17:54:48.766Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.768Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.088201ms -- stats: | ok: 0 events 2023-03-06T17:54:48.770Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.770Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.337µs -- stats: | ok: 0 events 2023-03-06T17:54:48.770Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.772Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.145112ms -- stats: | ok: 0 events 2023-03-06T17:54:48.774Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.774Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.141µs -- stats: | ok: 0 events 2023-03-06T17:54:48.774Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.777Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.084101ms -- stats: | ok: 0 events 2023-03-06T17:54:48.779Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.955µs -- stats: | ok: 0 events 2023-03-06T17:54:48.779Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.084486ms -- stats: | ok: 0 events 2023-03-06T17:54:48.783Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.734µs -- stats: | ok: 0 events 2023-03-06T17:54:48.783Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.785Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.083794ms -- stats: | ok: 0 events 2023-03-06T17:54:48.787Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.243µs -- stats: | ok: 0 events 2023-03-06T17:54:48.787Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.789Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.149945ms -- stats: | ok: 0 events 2023-03-06T17:54:48.792Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.792Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.925µs -- stats: | ok: 0 events 2023-03-06T17:54:48.792Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.794Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.105027ms -- stats: | ok: 0 events 2023-03-06T17:54:48.796Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.796Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.104µs -- stats: | ok: 0 events 2023-03-06T17:54:48.796Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.798Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.068308ms -- stats: | ok: 0 events 2023-03-06T17:54:48.800Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.427µs -- stats: | ok: 0 events 2023-03-06T17:54:48.800Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.802Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.097351ms -- stats: | ok: 0 events 2023-03-06T17:54:48.804Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.804Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 5.639µs -- stats: | ok: 0 events 2023-03-06T17:54:48.804Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.806Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.099631ms -- stats: | ok: 0 events 2023-03-06T17:54:48.808Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.808Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.041µs -- stats: | ok: 0 events 2023-03-06T17:54:48.808Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.810Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.067124ms -- stats: | ok: 0 events 2023-03-06T17:54:48.813Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.813Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.389µs -- stats: | ok: 0 events 2023-03-06T17:54:48.813Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.815Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.087155ms -- stats: | ok: 0 events 2023-03-06T17:54:48.817Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.817Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.951µs -- stats: | ok: 0 events 2023-03-06T17:54:48.817Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.819Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.10582ms -- stats: | ok: 0 events 2023-03-06T17:54:48.821Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.821Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 49.024µs -- stats: | ok: 0 events 2023-03-06T17:54:48.821Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.823Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.129078ms -- stats: | ok: 0 events 2023-03-06T17:54:48.826Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.826Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.864µs -- stats: | ok: 0 events 2023-03-06T17:54:48.826Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.828Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.082041ms -- stats: | ok: 0 events 2023-03-06T17:54:48.830Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.832Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #2' ended after running for 2.100858ms -- stats: | ok: 1 events ok <0.558s> test multi::tests::demux ... 2023-03-06T17:54:48.837Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.837Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.837Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.837Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.837Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.837Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:48.940Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO: Pipeline #1' ended after running for 103.150901ms -- stats: | ok: 4 events 2023-03-06T17:54:48.940Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO: Pipeline #2' ended after running for 103.163034ms -- stats: | ok: 4 events 2023-03-06T17:54:48.940Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR: Pipeline #1' ended after running for 103.165684ms -- stats: | ok: 6 events 2023-03-06T17:54:48.940Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR: Pipeline #2' ended after running for 103.167212ms -- stats: | ok: 6 events 2023-03-06T17:54:48.940Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIX: Pipeline #1' ended after running for 103.196437ms -- stats: | ok: 1 events 2023-03-06T17:54:48.940Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIX: Pipeline #2' ended after running for 103.186874ms -- stats: | ok: 1 events ok <0.108s> test multi::tests::doc_tests ... 2023-03-06T17:54:48.944Z 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-06T17:54:48.944Z 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-06T17:54:48.944Z 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-06T17:54:48.946Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: local screen' ended after running for 2.301053ms -- stats: | ok: 2 events 2023-03-06T17:54:48.946Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: zeta receiver' ended after running for 2.310065ms -- stats: | ok: 2 events 2023-03-06T17:54:48.946Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: earth snapper' ended after running for 2.311361ms -- stats: | ok: 2 events ok <0.007s> test multi::tests::error_handling ... 2023-03-06T17:54:48.951Z 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-06T17:54:48.951Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'Event with error handling: Pipeline #1' yielded ERROR '"BLOW CODE received: 79"' in 119ns Pipeline #1: ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-06T17:54:48.951Z 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-06T17:54:48.951Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'Event with error handling: Pipeline #2' yielded ERROR '"BLOW CODE received: 79"' in 105ns Pipeline #2: ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-06T17:54:48.953Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with error handling: Pipeline #1' ended after running for 2.147684ms -- stats: | ok: 3 events; avg 824ns - 1396.85354/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 119ns - 465.61785/sec 2023-03-06T17:54:48.953Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with error handling: Pipeline #2' ended after running for 2.11432ms -- stats: | ok: 3 events; avg 533ns - 1418.89591/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 105ns - 472.96530/sec ok <0.007s> test multi::tests::performance_measurements ... metricfull_non_futures_non_fallible_multi: 10692965.89/s -- 4194304 items processed in 392.24889ms metricless_non_futures_non_fallible_multi: 12658450.61/s -- 4194304 items processed in 331.344185ms par_metricless_non_futures_non_fallible_multi: 5291127.25/s -- 4194304 items processed in 792.705184ms metricfull_futures_fallible_multi: 7014681.39/s -- 4194304 items processed in 597.932218ms metricless_futures_fallible_multi: 9998555.63/s -- 4194304 items processed in 419.49099ms timeoutable_metricfull_futures_fallible_multi: 4576130.22/s -- 3145728 items processed in 687.420998ms timeoutable_metricless_futures_fallible_multi: 5689334.03/s -- 3145728 items processed in 552.916736ms ok <3.775s> test multi::tests::simple_pipelines ... 2023-03-06T17:54:52.734Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Simple Event: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:52.734Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Simple Event: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:52.736Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Simple Event: Pipeline #1' ended after running for 2.076272ms -- stats: | ok: 2 events 2023-03-06T17:54:52.736Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Simple Event: Pipeline #2' ended after running for 2.073689ms -- stats: | ok: 2 events ok <0.006s> test multi::tests::stats ... 2023-03-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.740Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.741Z 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-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #0 for non_future/non_fallible event' ended after running for 1.605178ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #1 for non_future/non_fallible event' ended after running for 1.602095ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #2 for non_future/non_fallible event' ended after running for 1.602343ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #3 for non_future/non_fallible event' ended after running for 1.604089ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #4 for non_future/non_fallible event' ended after running for 1.605372ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #5 for non_future/non_fallible event' ended after running for 1.605966ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #6 for non_future/non_fallible event' ended after running for 1.606731ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #7 for non_future/non_fallible event' ended after running for 1.607353ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #8 for non_future/non_fallible event' ended after running for 1.607814ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #9 for non_future/non_fallible event' ended after running for 1.608549ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #10 for non_future/non_fallible event' ended after running for 1.609145ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #11 for non_future/non_fallible event' ended after running for 1.609779ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #12 for non_future/non_fallible event' ended after running for 1.610195ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #13 for non_future/non_fallible event' ended after running for 1.610693ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #14 for non_future/non_fallible event' ended after running for 1.611215ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #15 for non_future/non_fallible event' ended after running for 1.611662ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #16 for non_future/non_fallible event' ended after running for 1.60771ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #17 for non_future/non_fallible event' ended after running for 1.607815ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #18 for non_future/non_fallible event' ended after running for 1.607819ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #19 for non_future/non_fallible event' ended after running for 1.608359ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #20 for non_future/non_fallible event' ended after running for 1.608937ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #21 for non_future/non_fallible event' ended after running for 1.609537ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #22 for non_future/non_fallible event' ended after running for 1.609717ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #23 for non_future/non_fallible event' ended after running for 1.610277ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #24 for non_future/non_fallible event' ended after running for 1.610693ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #25 for non_future/non_fallible event' ended after running for 1.611215ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #26 for non_future/non_fallible event' ended after running for 1.611839ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #27 for non_future/non_fallible event' ended after running for 1.612186ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #28 for non_future/non_fallible event' ended after running for 1.612731ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #29 for non_future/non_fallible event' ended after running for 1.613252ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #30 for non_future/non_fallible event' ended after running for 1.613808ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #31 for non_future/non_fallible event' ended after running for 1.614273ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #32 for non_future/non_fallible event' ended after running for 1.614832ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #33 for non_future/non_fallible event' ended after running for 1.61534ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #34 for non_future/non_fallible event' ended after running for 1.615937ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #35 for non_future/non_fallible event' ended after running for 1.61638ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #36 for non_future/non_fallible event' ended after running for 1.616942ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #37 for non_future/non_fallible event' ended after running for 1.617404ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #38 for non_future/non_fallible event' ended after running for 1.617938ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #39 for non_future/non_fallible event' ended after running for 1.618485ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #40 for non_future/non_fallible event' ended after running for 1.619047ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #41 for non_future/non_fallible event' ended after running for 1.619583ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #42 for non_future/non_fallible event' ended after running for 1.620129ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #43 for non_future/non_fallible event' ended after running for 1.620638ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #44 for non_future/non_fallible event' ended after running for 1.621225ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #45 for non_future/non_fallible event' ended after running for 1.620939ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #46 for non_future/non_fallible event' ended after running for 1.621308ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #47 for non_future/non_fallible event' ended after running for 1.621823ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #48 for non_future/non_fallible event' ended after running for 1.622601ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #49 for non_future/non_fallible event' ended after running for 1.622612ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #50 for non_future/non_fallible event' ended after running for 1.623141ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #51 for non_future/non_fallible event' ended after running for 1.623698ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #52 for non_future/non_fallible event' ended after running for 1.623957ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #53 for non_future/non_fallible event' ended after running for 1.623615ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #54 for non_future/non_fallible event' ended after running for 1.623221ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #55 for non_future/non_fallible event' ended after running for 1.622802ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #56 for non_future/non_fallible event' ended after running for 1.622395ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #57 for non_future/non_fallible event' ended after running for 1.621968ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #58 for non_future/non_fallible event' ended after running for 1.621573ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #59 for non_future/non_fallible event' ended after running for 1.620862ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #60 for non_future/non_fallible event' ended after running for 1.62085ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #61 for non_future/non_fallible event' ended after running for 1.497567ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #62 for non_future/non_fallible event' ended after running for 1.496124ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #63 for non_future/non_fallible event' ended after running for 1.496214ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #64 for non_future/non_fallible event' ended after running for 1.496668ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #65 for non_future/non_fallible event' ended after running for 1.497069ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #66 for non_future/non_fallible event' ended after running for 1.497408ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #67 for non_future/non_fallible event' ended after running for 1.497861ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #68 for non_future/non_fallible event' ended after running for 1.498395ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #69 for non_future/non_fallible event' ended after running for 1.498871ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #70 for non_future/non_fallible event' ended after running for 1.499306ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #71 for non_future/non_fallible event' ended after running for 1.499126ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #72 for non_future/non_fallible event' ended after running for 1.498913ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #73 for non_future/non_fallible event' ended after running for 1.500303ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #74 for non_future/non_fallible event' ended after running for 1.501308ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #75 for non_future/non_fallible event' ended after running for 1.502012ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #76 for non_future/non_fallible event' ended after running for 1.503936ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #77 for non_future/non_fallible event' ended after running for 1.505534ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #78 for non_future/non_fallible event' ended after running for 1.507239ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #79 for non_future/non_fallible event' ended after running for 1.509239ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #80 for non_future/non_fallible event' ended after running for 1.511573ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #81 for non_future/non_fallible event' ended after running for 1.513774ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #82 for non_future/non_fallible event' ended after running for 1.515871ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #83 for non_future/non_fallible event' ended after running for 1.517245ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #84 for non_future/non_fallible event' ended after running for 1.518542ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #85 for non_future/non_fallible event' ended after running for 1.519644ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #86 for non_future/non_fallible event' ended after running for 1.520954ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #87 for non_future/non_fallible event' ended after running for 1.522037ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #88 for non_future/non_fallible event' ended after running for 1.523085ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #89 for non_future/non_fallible event' ended after running for 1.524238ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #90 for non_future/non_fallible event' ended after running for 1.525319ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #91 for non_future/non_fallible event' ended after running for 1.526369ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #92 for non_future/non_fallible event' ended after running for 1.5275ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #93 for non_future/non_fallible event' ended after running for 1.528037ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #94 for non_future/non_fallible event' ended after running for 1.5292ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #95 for non_future/non_fallible event' ended after running for 1.530274ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #96 for non_future/non_fallible event' ended after running for 1.531338ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #97 for non_future/non_fallible event' ended after running for 1.532381ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #98 for non_future/non_fallible event' ended after running for 1.533396ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #99 for non_future/non_fallible event' ended after running for 1.534422ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #100 for non_future/non_fallible event' ended after running for 1.536213ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #101 for non_future/non_fallible event' ended after running for 1.536517ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #102 for non_future/non_fallible event' ended after running for 1.53622ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #103 for non_future/non_fallible event' ended after running for 1.536147ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #104 for non_future/non_fallible event' ended after running for 1.537811ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #105 for non_future/non_fallible event' ended after running for 1.538824ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #106 for non_future/non_fallible event' ended after running for 1.539814ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #107 for non_future/non_fallible event' ended after running for 1.540837ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #108 for non_future/non_fallible event' ended after running for 1.541842ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #109 for non_future/non_fallible event' ended after running for 1.542882ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #110 for non_future/non_fallible event' ended after running for 1.544015ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #111 for non_future/non_fallible event' ended after running for 1.544974ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #112 for non_future/non_fallible event' ended after running for 1.546242ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #113 for non_future/non_fallible event' ended after running for 1.547133ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #114 for non_future/non_fallible event' ended after running for 1.547409ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #115 for non_future/non_fallible event' ended after running for 1.547426ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #116 for non_future/non_fallible event' ended after running for 1.547533ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #117 for non_future/non_fallible event' ended after running for 1.548065ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #118 for non_future/non_fallible event' ended after running for 1.548896ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #119 for non_future/non_fallible event' ended after running for 1.548986ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #120 for non_future/non_fallible event' ended after running for 1.549446ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #121 for non_future/non_fallible event' ended after running for 1.550561ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #122 for non_future/non_fallible event' ended after running for 1.549789ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #123 for non_future/non_fallible event' ended after running for 1.550364ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #124 for non_future/non_fallible event' ended after running for 1.551372ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #125 for non_future/non_fallible event' ended after running for 1.552491ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #126 for non_future/non_fallible event' ended after running for 1.553577ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #127 for non_future/non_fallible event' ended after running for 1.554637ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #128 for non_future/non_fallible event' ended after running for 1.554898ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #129 for non_future/non_fallible event' ended after running for 1.546793ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #130 for non_future/non_fallible event' ended after running for 1.547825ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #131 for non_future/non_fallible event' ended after running for 1.548089ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #132 for non_future/non_fallible event' ended after running for 1.548455ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #133 for non_future/non_fallible event' ended after running for 1.548646ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #134 for non_future/non_fallible event' ended after running for 1.548615ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #135 for non_future/non_fallible event' ended after running for 1.549041ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #136 for non_future/non_fallible event' ended after running for 1.549679ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #137 for non_future/non_fallible event' ended after running for 1.550084ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #138 for non_future/non_fallible event' ended after running for 1.550159ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #139 for non_future/non_fallible event' ended after running for 1.550353ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #140 for non_future/non_fallible event' ended after running for 1.550656ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #141 for non_future/non_fallible event' ended after running for 1.551981ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #142 for non_future/non_fallible event' ended after running for 1.553348ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #143 for non_future/non_fallible event' ended after running for 1.554433ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #144 for non_future/non_fallible event' ended after running for 1.555421ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #145 for non_future/non_fallible event' ended after running for 1.556263ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #146 for non_future/non_fallible event' ended after running for 1.556382ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #147 for non_future/non_fallible event' ended after running for 1.55688ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #148 for non_future/non_fallible event' ended after running for 1.557951ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #149 for non_future/non_fallible event' ended after running for 1.55853ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #150 for non_future/non_fallible event' ended after running for 1.55861ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #151 for non_future/non_fallible event' ended after running for 1.559013ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #152 for non_future/non_fallible event' ended after running for 1.559109ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #153 for non_future/non_fallible event' ended after running for 1.559231ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #154 for non_future/non_fallible event' ended after running for 1.56047ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #155 for non_future/non_fallible event' ended after running for 1.561465ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #156 for non_future/non_fallible event' ended after running for 1.562643ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #157 for non_future/non_fallible event' ended after running for 1.563658ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #158 for non_future/non_fallible event' ended after running for 1.565155ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #159 for non_future/non_fallible event' ended after running for 1.566261ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #160 for non_future/non_fallible event' ended after running for 1.567985ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #161 for non_future/non_fallible event' ended after running for 1.568515ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #162 for non_future/non_fallible event' ended after running for 1.569647ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #163 for non_future/non_fallible event' ended after running for 1.570682ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #164 for non_future/non_fallible event' ended after running for 1.571857ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #165 for non_future/non_fallible event' ended after running for 1.573345ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #166 for non_future/non_fallible event' ended after running for 1.57447ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #167 for non_future/non_fallible event' ended after running for 1.57548ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #168 for non_future/non_fallible event' ended after running for 1.576517ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #169 for non_future/non_fallible event' ended after running for 1.577609ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #170 for non_future/non_fallible event' ended after running for 1.578911ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #171 for non_future/non_fallible event' ended after running for 1.579964ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #172 for non_future/non_fallible event' ended after running for 1.581497ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #173 for non_future/non_fallible event' ended after running for 1.582619ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #174 for non_future/non_fallible event' ended after running for 1.583673ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #175 for non_future/non_fallible event' ended after running for 1.584824ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #176 for non_future/non_fallible event' ended after running for 1.585908ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #177 for non_future/non_fallible event' ended after running for 1.587014ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #178 for non_future/non_fallible event' ended after running for 1.587677ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #179 for non_future/non_fallible event' ended after running for 1.588652ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #180 for non_future/non_fallible event' ended after running for 1.589661ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #181 for non_future/non_fallible event' ended after running for 1.590694ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #182 for non_future/non_fallible event' ended after running for 1.591872ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #183 for non_future/non_fallible event' ended after running for 1.592597ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #184 for non_future/non_fallible event' ended after running for 1.593856ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #185 for non_future/non_fallible event' ended after running for 1.594861ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #186 for non_future/non_fallible event' ended after running for 1.595843ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #187 for non_future/non_fallible event' ended after running for 1.596996ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #188 for non_future/non_fallible event' ended after running for 1.59809ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #189 for non_future/non_fallible event' ended after running for 1.603354ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #190 for non_future/non_fallible event' ended after running for 1.604994ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #191 for non_future/non_fallible event' ended after running for 1.605541ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #192 for non_future/non_fallible event' ended after running for 1.60615ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #193 for non_future/non_fallible event' ended after running for 1.606785ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #194 for non_future/non_fallible event' ended after running for 1.607366ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #195 for non_future/non_fallible event' ended after running for 1.607491ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #196 for non_future/non_fallible event' ended after running for 1.608041ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #197 for non_future/non_fallible event' ended after running for 1.608568ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #198 for non_future/non_fallible event' ended after running for 1.609106ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #199 for non_future/non_fallible event' ended after running for 1.609673ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #200 for non_future/non_fallible event' ended after running for 1.610241ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #201 for non_future/non_fallible event' ended after running for 1.610798ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #202 for non_future/non_fallible event' ended after running for 1.61141ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #203 for non_future/non_fallible event' ended after running for 1.611972ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #204 for non_future/non_fallible event' ended after running for 1.612514ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #205 for non_future/non_fallible event' ended after running for 1.613118ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #206 for non_future/non_fallible event' ended after running for 1.613705ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #207 for non_future/non_fallible event' ended after running for 1.614233ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #208 for non_future/non_fallible event' ended after running for 1.615224ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #209 for non_future/non_fallible event' ended after running for 1.61487ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #210 for non_future/non_fallible event' ended after running for 1.614556ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #211 for non_future/non_fallible event' ended after running for 1.614163ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #212 for non_future/non_fallible event' ended after running for 1.612936ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #213 for non_future/non_fallible event' ended after running for 1.61338ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #214 for non_future/non_fallible event' ended after running for 1.613932ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #215 for non_future/non_fallible event' ended after running for 1.614438ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #216 for non_future/non_fallible event' ended after running for 1.61496ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #217 for non_future/non_fallible event' ended after running for 1.61384ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #218 for non_future/non_fallible event' ended after running for 1.614474ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #219 for non_future/non_fallible event' ended after running for 1.614996ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #220 for non_future/non_fallible event' ended after running for 1.615085ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #221 for non_future/non_fallible event' ended after running for 1.614614ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #222 for non_future/non_fallible event' ended after running for 1.614465ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #223 for non_future/non_fallible event' ended after running for 1.614337ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #224 for non_future/non_fallible event' ended after running for 1.61399ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #225 for non_future/non_fallible event' ended after running for 1.613577ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #226 for non_future/non_fallible event' ended after running for 1.613579ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #227 for non_future/non_fallible event' ended after running for 1.61331ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #228 for non_future/non_fallible event' ended after running for 1.61386ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #229 for non_future/non_fallible event' ended after running for 1.614344ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #230 for non_future/non_fallible event' ended after running for 1.614951ms -- stats: | ok: 1 events 2023-03-06T17:54:52.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #231 for non_future/non_fallible event' ended after running for 1.615509ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #232 for non_future/non_fallible event' ended after running for 1.616071ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #233 for non_future/non_fallible event' ended after running for 1.61666ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #234 for non_future/non_fallible event' ended after running for 1.617245ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #235 for non_future/non_fallible event' ended after running for 1.617795ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #236 for non_future/non_fallible event' ended after running for 1.61837ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #237 for non_future/non_fallible event' ended after running for 1.61895ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #238 for non_future/non_fallible event' ended after running for 1.619564ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #239 for non_future/non_fallible event' ended after running for 1.620126ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #240 for non_future/non_fallible event' ended after running for 1.620711ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #241 for non_future/non_fallible event' ended after running for 1.621243ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #242 for non_future/non_fallible event' ended after running for 1.621833ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #243 for non_future/non_fallible event' ended after running for 1.622442ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #244 for non_future/non_fallible event' ended after running for 1.623401ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #245 for non_future/non_fallible event' ended after running for 1.62399ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #246 for non_future/non_fallible event' ended after running for 1.624022ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #247 for non_future/non_fallible event' ended after running for 1.624568ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #248 for non_future/non_fallible event' ended after running for 1.625122ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #249 for non_future/non_fallible event' ended after running for 1.625548ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #250 for non_future/non_fallible event' ended after running for 1.626038ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #251 for non_future/non_fallible event' ended after running for 1.6266ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #252 for non_future/non_fallible event' ended after running for 1.62722ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #253 for non_future/non_fallible event' ended after running for 1.627813ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #254 for non_future/non_fallible event' ended after running for 1.628429ms -- stats: | ok: 1 events 2023-03-06T17:54:52.743Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #255 for non_future/non_fallible event' ended after running for 1.629001ms -- stats: | ok: 1 events 2023-03-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.747Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.748Z 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-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #61 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.360556ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #62 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.378499ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #63 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.381551ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #64 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.38362ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #65 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.385618ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #66 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.387524ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #67 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.389413ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #68 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.391575ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #69 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.393239ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #70 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.394844ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #71 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.396589ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #72 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.398272ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #73 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.400038ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #74 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.401901ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #75 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.4038ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #76 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.405651ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #77 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.407353ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #78 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.4091ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #79 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.41087ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #80 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.412507ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #81 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.414175ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #82 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.416323ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #83 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.417967ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #84 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.419448ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #85 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.421595ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #86 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.422969ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #87 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.424557ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #88 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.42648ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #89 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.42821ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #90 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.429822ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #91 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.431574ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #92 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.433343ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #93 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.435181ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #94 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.439794ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #95 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.441945ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #96 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.445516ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #97 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.448687ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #98 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.452608ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #99 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.455487ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #100 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.458937ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #101 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.461771ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #102 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.464623ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #103 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.467386ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #104 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.470602ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #105 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.473619ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #106 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.476282ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #107 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.479409ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #108 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.485744ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #109 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.488804ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #110 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.491103ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #111 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.494851ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #112 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.498582ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #113 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.502245ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #114 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.505605ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #115 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.508093ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #116 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.512117ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #117 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.516536ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #118 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.519629ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #119 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.522758ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #120 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.525852ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #121 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.528267ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #122 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.696574ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #123 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.699407ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #124 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.702417ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #125 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.705534ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #126 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.708626ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #127 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.711913ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #128 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.715369ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #129 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.719058ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #130 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.722317ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #131 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.725967ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #132 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.729078ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #133 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.73251ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #134 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.737124ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #135 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.740536ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #136 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.744236ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #137 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.747674ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #138 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.750632ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #139 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.753917ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #140 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.757382ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #141 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.761284ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #142 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.764539ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #143 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.767426ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #144 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.770834ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #145 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.775189ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #146 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.777777ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #147 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.781853ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #148 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.785304ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #149 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.788204ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #150 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.791622ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #151 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.794882ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #152 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.797985ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #153 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.80146ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #154 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.805098ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #155 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.808432ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #156 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.811813ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #157 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.816279ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #158 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.820271ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #159 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.823226ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #160 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.826727ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #161 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.830138ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #162 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.833389ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #163 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.836701ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #164 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.839783ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #165 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.843274ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #166 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.846563ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #167 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.849577ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #168 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.852885ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #169 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.862963ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #170 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.866511ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #171 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.870108ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #172 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.873549ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #173 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.876979ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #174 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.880243ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #175 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.884209ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #176 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.88773ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #177 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.890856ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #178 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.894304ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #179 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.897861ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #180 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.900911ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #181 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.904426ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #182 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.907568ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #183 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.90872ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #184 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.912155ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #185 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.915015ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #186 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.918358ms 2023-03-06T17:54:52.899Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #187 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.921603ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #188 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.924764ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #189 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.928124ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #190 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.931398ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #191 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.934767ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #192 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.93777ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #193 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.940764ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #194 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.944003ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #195 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.94743ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #196 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.950776ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #197 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.955211ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #198 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.958991ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #199 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.962347ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #200 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.965653ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #201 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.968891ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #202 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.972252ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #203 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.975524ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #204 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.979216ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #205 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.981866ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #206 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.985064ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #207 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.988428ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #208 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.991537ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #209 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.994862ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #210 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.99764ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #211 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.000665ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #212 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.003899ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #213 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.00709ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #214 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.010252ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #215 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.014285ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #216 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.017787ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #217 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.02109ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #218 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.023507ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #219 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.026836ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #220 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.029979ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #221 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.033273ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #222 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.035854ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #223 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.039074ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #224 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.042541ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #225 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.045683ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #226 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.048898ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #227 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.051904ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #228 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.055244ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #229 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.058224ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #230 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.061499ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #231 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.064844ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #232 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.068221ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #233 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.071321ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #234 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.074769ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #235 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.078069ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #236 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.081342ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #237 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.084617ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #238 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.088104ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #239 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.09133ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #240 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.094295ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #241 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.097461ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #242 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.100485ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #243 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.10392ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #244 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.107018ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #245 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.110432ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #246 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.113561ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #247 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.11671ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #248 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.119875ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #249 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.123034ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #250 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.125485ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #251 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.129683ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #252 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.132995ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #253 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.136416ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #254 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.139523ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #255 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.142666ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #0 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.145846ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #1 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.148885ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #2 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.152088ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #3 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.155273ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #4 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.158543ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #5 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.161769ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #6 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.164998ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #7 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.167867ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #8 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.170635ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #9 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.173514ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #10 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.176852ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #11 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.179928ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #12 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.18328ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #13 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.186997ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #14 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.190505ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #15 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.193714ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #16 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.197116ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #17 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.200282ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #18 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.204141ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #19 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.207364ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #20 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.209877ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #21 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.213218ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #22 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.216401ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #23 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.219615ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #24 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.222842ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #25 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.226374ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #26 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.229531ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #27 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.232303ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #28 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.235406ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #29 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.238668ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #30 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.241956ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #31 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.245903ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #32 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.248777ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #33 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.252429ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #34 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.255298ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #35 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.258674ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #36 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.261949ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #37 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.265722ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #38 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.26863ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #39 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.271464ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #40 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.275177ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #41 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.278528ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #42 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.281872ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #43 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.285125ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #44 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.288319ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #45 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.291142ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #46 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.294354ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #47 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.296775ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #48 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.300105ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #49 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.304444ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #50 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.307946ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #51 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.311055ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #52 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.314007ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #53 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.317796ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #54 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.321042ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #55 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.323893ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #56 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.327156ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #57 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.330138ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #58 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.332487ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #59 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.33581ms 2023-03-06T17:54:52.900Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #60 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.33896ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #61 for future & fallible event' TIMED OUT after 151.958305ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #62 for future & fallible event' TIMED OUT after 151.970716ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #63 for future & fallible event' TIMED OUT after 151.971097ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #64 for future & fallible event' TIMED OUT after 151.970865ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #65 for future & fallible event' TIMED OUT after 151.970201ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #66 for future & fallible event' TIMED OUT after 151.970055ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #67 for future & fallible event' TIMED OUT after 151.969082ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #68 for future & fallible event' TIMED OUT after 151.968625ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #69 for future & fallible event' TIMED OUT after 151.96807ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #70 for future & fallible event' TIMED OUT after 151.967708ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #71 for future & fallible event' TIMED OUT after 151.966954ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #72 for future & fallible event' TIMED OUT after 151.966571ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #73 for future & fallible event' TIMED OUT after 151.966106ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #74 for future & fallible event' TIMED OUT after 151.965725ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #75 for future & fallible event' TIMED OUT after 151.965132ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #76 for future & fallible event' TIMED OUT after 151.964575ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #77 for future & fallible event' TIMED OUT after 151.964027ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #78 for future & fallible event' TIMED OUT after 151.963816ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #79 for future & fallible event' TIMED OUT after 151.964491ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #80 for future & fallible event' TIMED OUT after 151.96466ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #81 for future & fallible event' TIMED OUT after 151.963797ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #82 for future & fallible event' TIMED OUT after 151.963858ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #83 for future & fallible event' TIMED OUT after 151.963333ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #84 for future & fallible event' TIMED OUT after 151.962928ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #85 for future & fallible event' TIMED OUT after 151.963924ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #86 for future & fallible event' TIMED OUT after 151.965254ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #87 for future & fallible event' TIMED OUT after 151.9657ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #88 for future & fallible event' TIMED OUT after 151.966553ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #89 for future & fallible event' TIMED OUT after 151.966566ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #90 for future & fallible event' TIMED OUT after 151.966378ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #91 for future & fallible event' TIMED OUT after 151.965948ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #92 for future & fallible event' TIMED OUT after 151.965395ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #93 for future & fallible event' TIMED OUT after 151.962007ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #94 for future & fallible event' TIMED OUT after 151.961074ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #95 for future & fallible event' TIMED OUT after 151.959737ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #96 for future & fallible event' TIMED OUT after 151.957608ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #97 for future & fallible event' TIMED OUT after 151.954696ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #98 for future & fallible event' TIMED OUT after 151.952649ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #99 for future & fallible event' TIMED OUT after 151.951044ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #100 for future & fallible event' TIMED OUT after 151.952233ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #101 for future & fallible event' TIMED OUT after 151.950494ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #102 for future & fallible event' TIMED OUT after 151.949943ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #103 for future & fallible event' TIMED OUT after 151.948825ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #104 for future & fallible event' TIMED OUT after 151.948645ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #105 for future & fallible event' TIMED OUT after 151.94853ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #106 for future & fallible event' TIMED OUT after 151.947693ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #107 for future & fallible event' TIMED OUT after 151.944336ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #108 for future & fallible event' TIMED OUT after 151.944148ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #109 for future & fallible event' TIMED OUT after 151.942427ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #110 for future & fallible event' TIMED OUT after 151.940753ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #111 for future & fallible event' TIMED OUT after 151.939997ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #112 for future & fallible event' TIMED OUT after 151.938182ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #113 for future & fallible event' TIMED OUT after 151.93658ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #114 for future & fallible event' TIMED OUT after 151.936862ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #115 for future & fallible event' TIMED OUT after 151.935976ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #116 for future & fallible event' TIMED OUT after 151.935153ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #117 for future & fallible event' TIMED OUT after 151.935654ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #118 for future & fallible event' TIMED OUT after 151.934035ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #119 for future & fallible event' TIMED OUT after 151.932894ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #120 for future & fallible event' TIMED OUT after 151.932757ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #121 for future & fallible event' TIMED OUT after 151.931921ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #122 for future & fallible event' TIMED OUT after 151.931267ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #123 for future & fallible event' TIMED OUT after 151.931352ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #124 for future & fallible event' TIMED OUT after 151.93042ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #125 for future & fallible event' TIMED OUT after 151.929585ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #126 for future & fallible event' TIMED OUT after 151.928279ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #127 for future & fallible event' TIMED OUT after 151.926938ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #128 for future & fallible event' TIMED OUT after 151.925352ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #129 for future & fallible event' TIMED OUT after 151.9243ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #130 for future & fallible event' TIMED OUT after 151.922525ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #131 for future & fallible event' TIMED OUT after 151.921074ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #132 for future & fallible event' TIMED OUT after 151.919788ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #133 for future & fallible event' TIMED OUT after 151.917432ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #134 for future & fallible event' TIMED OUT after 151.916276ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #135 for future & fallible event' TIMED OUT after 151.915243ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #136 for future & fallible event' TIMED OUT after 151.913548ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #137 for future & fallible event' TIMED OUT after 151.911978ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #138 for future & fallible event' TIMED OUT after 151.910557ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #139 for future & fallible event' TIMED OUT after 151.908999ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #140 for future & fallible event' TIMED OUT after 151.907179ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #141 for future & fallible event' TIMED OUT after 151.906132ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #142 for future & fallible event' TIMED OUT after 151.905194ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #143 for future & fallible event' TIMED OUT after 151.903933ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #144 for future & fallible event' TIMED OUT after 151.902695ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #145 for future & fallible event' TIMED OUT after 151.902422ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #146 for future & fallible event' TIMED OUT after 151.900341ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #147 for future & fallible event' TIMED OUT after 151.898801ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #148 for future & fallible event' TIMED OUT after 151.898136ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #149 for future & fallible event' TIMED OUT after 151.89622ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #150 for future & fallible event' TIMED OUT after 151.894633ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #151 for future & fallible event' TIMED OUT after 151.89379ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #152 for future & fallible event' TIMED OUT after 151.892268ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #153 for future & fallible event' TIMED OUT after 151.890667ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #154 for future & fallible event' TIMED OUT after 151.889248ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #155 for future & fallible event' TIMED OUT after 151.887692ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #156 for future & fallible event' TIMED OUT after 151.884922ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #157 for future & fallible event' TIMED OUT after 151.882761ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #158 for future & fallible event' TIMED OUT after 151.882076ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #159 for future & fallible event' TIMED OUT after 151.880354ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #160 for future & fallible event' TIMED OUT after 151.878773ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #161 for future & fallible event' TIMED OUT after 151.877348ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #162 for future & fallible event' TIMED OUT after 151.876342ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #163 for future & fallible event' TIMED OUT after 151.87483ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #164 for future & fallible event' TIMED OUT after 151.873128ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #165 for future & fallible event' TIMED OUT after 151.871508ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #166 for future & fallible event' TIMED OUT after 151.870267ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #167 for future & fallible event' TIMED OUT after 151.868907ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #168 for future & fallible event' TIMED OUT after 151.861311ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #169 for future & fallible event' TIMED OUT after 151.859224ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #170 for future & fallible event' TIMED OUT after 151.85734ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #171 for future & fallible event' TIMED OUT after 151.855884ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #172 for future & fallible event' TIMED OUT after 151.854055ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #173 for future & fallible event' TIMED OUT after 151.852767ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #174 for future & fallible event' TIMED OUT after 151.850384ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #175 for future & fallible event' TIMED OUT after 151.848958ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #176 for future & fallible event' TIMED OUT after 151.848401ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #177 for future & fallible event' TIMED OUT after 151.847269ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #178 for future & fallible event' TIMED OUT after 151.846407ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #179 for future & fallible event' TIMED OUT after 151.845897ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #180 for future & fallible event' TIMED OUT after 151.844041ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #181 for future & fallible event' TIMED OUT after 151.842214ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #182 for future & fallible event' TIMED OUT after 151.840761ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #183 for future & fallible event' TIMED OUT after 151.840618ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #184 for future & fallible event' TIMED OUT after 151.840578ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #185 for future & fallible event' TIMED OUT after 151.839364ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #186 for future & fallible event' TIMED OUT after 151.838901ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #187 for future & fallible event' TIMED OUT after 151.839318ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #188 for future & fallible event' TIMED OUT after 151.838ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #189 for future & fallible event' TIMED OUT after 151.837026ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #190 for future & fallible event' TIMED OUT after 151.83509ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #191 for future & fallible event' TIMED OUT after 151.833478ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #192 for future & fallible event' TIMED OUT after 151.831486ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #193 for future & fallible event' TIMED OUT after 151.829765ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #194 for future & fallible event' TIMED OUT after 151.827627ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #195 for future & fallible event' TIMED OUT after 151.825518ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #196 for future & fallible event' TIMED OUT after 151.822458ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #197 for future & fallible event' TIMED OUT after 151.819903ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #198 for future & fallible event' TIMED OUT after 151.817842ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #199 for future & fallible event' TIMED OUT after 151.815825ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #200 for future & fallible event' TIMED OUT after 151.813863ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #201 for future & fallible event' TIMED OUT after 151.812068ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #202 for future & fallible event' TIMED OUT after 151.810252ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #203 for future & fallible event' TIMED OUT after 151.807713ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #204 for future & fallible event' TIMED OUT after 151.806215ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #205 for future & fallible event' TIMED OUT after 151.804002ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #206 for future & fallible event' TIMED OUT after 151.801936ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #207 for future & fallible event' TIMED OUT after 151.800415ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #208 for future & fallible event' TIMED OUT after 151.798316ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #209 for future & fallible event' TIMED OUT after 151.797633ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #210 for future & fallible event' TIMED OUT after 151.796409ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #211 for future & fallible event' TIMED OUT after 151.794592ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #212 for future & fallible event' TIMED OUT after 151.793207ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #213 for future & fallible event' TIMED OUT after 151.791318ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #214 for future & fallible event' TIMED OUT after 151.788814ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #215 for future & fallible event' TIMED OUT after 151.786343ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #216 for future & fallible event' TIMED OUT after 151.78442ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #217 for future & fallible event' TIMED OUT after 151.783437ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #218 for future & fallible event' TIMED OUT after 151.781754ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #219 for future & fallible event' TIMED OUT after 151.779831ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #220 for future & fallible event' TIMED OUT after 151.778203ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #221 for future & fallible event' TIMED OUT after 151.776342ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #222 for future & fallible event' TIMED OUT after 151.775064ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #223 for future & fallible event' TIMED OUT after 151.773989ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #224 for future & fallible event' TIMED OUT after 151.802381ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #225 for future & fallible event' TIMED OUT after 151.802756ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #226 for future & fallible event' TIMED OUT after 151.802663ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #227 for future & fallible event' TIMED OUT after 151.80263ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #228 for future & fallible event' TIMED OUT after 151.802653ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #229 for future & fallible event' TIMED OUT after 151.802398ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #230 for future & fallible event' TIMED OUT after 151.802151ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #231 for future & fallible event' TIMED OUT after 151.801115ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #232 for future & fallible event' TIMED OUT after 151.799617ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #233 for future & fallible event' TIMED OUT after 151.79815ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #234 for future & fallible event' TIMED OUT after 151.796724ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #235 for future & fallible event' TIMED OUT after 151.795805ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #236 for future & fallible event' TIMED OUT after 151.795046ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #237 for future & fallible event' TIMED OUT after 151.794205ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #238 for future & fallible event' TIMED OUT after 151.792887ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #239 for future & fallible event' TIMED OUT after 151.791269ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #240 for future & fallible event' TIMED OUT after 151.790618ms 2023-03-06T17:54:53.051Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #241 for future & fallible event' TIMED OUT after 151.789071ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #242 for future & fallible event' TIMED OUT after 151.787823ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #243 for future & fallible event' TIMED OUT after 151.786234ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #244 for future & fallible event' TIMED OUT after 151.784889ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #245 for future & fallible event' TIMED OUT after 151.784444ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #246 for future & fallible event' TIMED OUT after 151.783041ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #247 for future & fallible event' TIMED OUT after 151.781776ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #248 for future & fallible event' TIMED OUT after 151.780505ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #249 for future & fallible event' TIMED OUT after 151.779819ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #250 for future & fallible event' TIMED OUT after 151.777827ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #251 for future & fallible event' TIMED OUT after 151.776258ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #252 for future & fallible event' TIMED OUT after 151.774782ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #253 for future & fallible event' TIMED OUT after 151.773589ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #254 for future & fallible event' TIMED OUT after 151.772142ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #255 for future & fallible event' TIMED OUT after 151.771138ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #0 for future & fallible event' TIMED OUT after 151.769117ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #1 for future & fallible event' TIMED OUT after 151.768127ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #2 for future & fallible event' TIMED OUT after 151.767306ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #3 for future & fallible event' TIMED OUT after 151.76607ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #4 for future & fallible event' TIMED OUT after 151.764914ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #5 for future & fallible event' TIMED OUT after 151.764293ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #6 for future & fallible event' TIMED OUT after 151.763391ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #7 for future & fallible event' TIMED OUT after 151.762026ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #8 for future & fallible event' TIMED OUT after 151.761461ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #9 for future & fallible event' TIMED OUT after 151.761465ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #10 for future & fallible event' TIMED OUT after 151.761209ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #11 for future & fallible event' TIMED OUT after 151.759461ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #12 for future & fallible event' TIMED OUT after 151.758006ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #13 for future & fallible event' TIMED OUT after 151.757644ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #14 for future & fallible event' TIMED OUT after 151.756527ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #15 for future & fallible event' TIMED OUT after 151.754621ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #16 for future & fallible event' TIMED OUT after 151.752965ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #17 for future & fallible event' TIMED OUT after 151.7505ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #18 for future & fallible event' TIMED OUT after 151.750571ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #19 for future & fallible event' TIMED OUT after 151.75053ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #20 for future & fallible event' TIMED OUT after 151.750534ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #21 for future & fallible event' TIMED OUT after 151.749232ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #22 for future & fallible event' TIMED OUT after 151.748025ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #23 for future & fallible event' TIMED OUT after 151.746351ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #24 for future & fallible event' TIMED OUT after 151.74426ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #25 for future & fallible event' TIMED OUT after 151.743088ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #26 for future & fallible event' TIMED OUT after 151.741153ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #27 for future & fallible event' TIMED OUT after 151.739345ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #28 for future & fallible event' TIMED OUT after 151.738015ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #29 for future & fallible event' TIMED OUT after 151.736074ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #30 for future & fallible event' TIMED OUT after 151.73337ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #31 for future & fallible event' TIMED OUT after 151.745632ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #32 for future & fallible event' TIMED OUT after 151.743529ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #33 for future & fallible event' TIMED OUT after 151.74173ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #34 for future & fallible event' TIMED OUT after 151.739595ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #35 for future & fallible event' TIMED OUT after 151.73775ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #36 for future & fallible event' TIMED OUT after 151.735239ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #37 for future & fallible event' TIMED OUT after 151.73352ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #38 for future & fallible event' TIMED OUT after 151.731912ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #39 for future & fallible event' TIMED OUT after 151.729782ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #40 for future & fallible event' TIMED OUT after 151.72797ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #41 for future & fallible event' TIMED OUT after 151.72637ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #42 for future & fallible event' TIMED OUT after 151.724361ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #43 for future & fallible event' TIMED OUT after 151.722354ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #44 for future & fallible event' TIMED OUT after 151.720853ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #45 for future & fallible event' TIMED OUT after 151.719064ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #46 for future & fallible event' TIMED OUT after 151.71705ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #47 for future & fallible event' TIMED OUT after 151.715415ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #48 for future & fallible event' TIMED OUT after 151.712718ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #49 for future & fallible event' TIMED OUT after 151.710794ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #50 for future & fallible event' TIMED OUT after 151.708716ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #51 for future & fallible event' TIMED OUT after 151.707012ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #52 for future & fallible event' TIMED OUT after 151.7051ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #53 for future & fallible event' TIMED OUT after 151.703148ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #54 for future & fallible event' TIMED OUT after 151.701642ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #55 for future & fallible event' TIMED OUT after 151.699735ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #56 for future & fallible event' TIMED OUT after 151.697755ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #57 for future & fallible event' TIMED OUT after 151.696219ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #58 for future & fallible event' TIMED OUT after 151.695624ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #59 for future & fallible event' TIMED OUT after 151.715329ms 2023-03-06T17:54:53.052Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #60 for future & fallible event' TIMED OUT after 151.713514ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #61 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.405673ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #62 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.423336ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #63 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.426484ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #64 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.428693ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #65 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.430415ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #66 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.432189ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #67 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.434217ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #68 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.435933ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #69 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.437672ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #70 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.439007ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #71 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.440962ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #72 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.442794ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #73 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.444541ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #74 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.446627ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #75 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.448451ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #76 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.449612ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #77 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.452053ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #78 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.453945ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #79 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.455832ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #80 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.457431ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #81 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.459603ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #82 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.461357ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #83 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.462833ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #84 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.46466ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #85 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.46652ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #86 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.468409ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #87 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.470383ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #88 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.471969ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #89 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.473694ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #90 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.475351ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #91 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.476889ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #92 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.478992ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #93 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.48065ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #94 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.482954ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #95 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.484632ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #96 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.490479ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #97 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.493378ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #98 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.495875ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #99 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.497592ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #100 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.49946ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #101 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.501133ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #102 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.502889ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #103 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.504182ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #104 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.505927ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #105 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.507942ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #106 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.509726ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #107 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.511423ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #108 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.513049ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #109 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.515462ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #110 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.517177ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #111 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.519068ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #112 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.520984ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #113 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.522852ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #114 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.524731ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #115 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.554264ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #116 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.556461ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #117 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.558426ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #118 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.560323ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #119 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.562664ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #120 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.564929ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #121 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.567477ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #122 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.569471ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #123 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.571545ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #124 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.573788ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #125 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.57954ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #126 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.581541ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #127 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.583406ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #128 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.585457ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #129 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.587861ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #130 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.589794ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #131 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.592218ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #132 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.594304ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #133 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.59699ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #134 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.598861ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #135 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.601371ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #136 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.605149ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #137 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.607216ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #138 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.609208ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #139 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.611183ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #140 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.613237ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #141 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.615358ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #142 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.617217ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #143 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.619041ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #144 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.620918ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #145 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.622754ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #146 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.624705ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #147 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.626737ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #148 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.628727ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #149 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.63057ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #150 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.632785ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #151 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.634637ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #152 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.636566ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #153 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.639049ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #154 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.640996ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #155 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.642824ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #156 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.645327ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #157 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.6469ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #158 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.64941ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #159 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.651878ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #160 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.654465ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #161 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.656104ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #162 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.657913ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #163 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.659708ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #164 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.661388ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #165 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.663223ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #166 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.665033ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #167 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.667011ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #168 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.669149ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #169 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.684934ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #170 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.68678ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #171 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.688543ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #172 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.690364ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #173 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.692134ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #174 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.694001ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #175 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.695731ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #176 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.697905ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #177 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.7001ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #178 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.703218ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #179 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.705238ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #180 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.707213ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #181 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.708852ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #182 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.710593ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #183 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.712304ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #184 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.71412ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #185 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.715871ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #186 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.717573ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #187 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.719645ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #188 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.721287ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #189 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.723367ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #190 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.725076ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #191 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.746865ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #192 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.7488ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #193 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.751108ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #194 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.753352ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #195 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.755123ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #196 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.757377ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #197 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.759249ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #198 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.762474ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #199 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.76516ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #200 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.767118ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #201 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.769122ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #202 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.770939ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #203 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.772834ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #204 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.774861ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #205 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.776843ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #206 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.779236ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #207 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.780981ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #208 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.782348ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #209 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.784077ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #210 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.78611ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #211 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.787954ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #212 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.789637ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #213 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.791496ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #214 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.793822ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #215 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.809866ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #216 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.812233ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #217 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.813946ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #218 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.815922ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #219 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.817773ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #220 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.81958ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #221 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.821307ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #222 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.822657ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #223 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.824337ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #224 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.826017ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #225 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.8277ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #226 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.829354ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #227 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.831119ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #228 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.832959ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #229 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.834446ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #230 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.836099ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #231 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.837767ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #232 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.84017ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #233 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.841935ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #234 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.843652ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #235 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.845674ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #236 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.847561ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #237 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.849413ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #238 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.851357ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #239 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.853198ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #240 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.855414ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #241 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.857138ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #242 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.878581ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #243 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.880119ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #244 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.882666ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #245 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.885173ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #246 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.887145ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #247 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.889005ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #248 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.890618ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #249 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.891994ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #250 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.894807ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #251 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.89718ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #252 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.899112ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #253 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.901677ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #254 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.903464ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #255 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.905191ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #0 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.906563ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #1 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.908487ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #2 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.910297ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #3 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.912481ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #4 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.928705ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #5 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.931197ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #6 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.932628ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #7 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.934373ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #8 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.936715ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #9 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.938394ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #10 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.940371ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #11 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.94286ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #12 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.94542ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #13 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.947322ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #14 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.949489ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #15 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.951128ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #16 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.952831ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #17 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.954551ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #18 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.956511ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #19 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.95821ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #20 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.95993ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #21 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.961917ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #22 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.964007ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #23 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.966084ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #24 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.956301ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #25 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.957455ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #26 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.959022ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #27 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.96084ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #28 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.962476ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #29 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.964126ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #30 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.966868ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #31 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.968688ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #32 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.996936ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #33 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.001498ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #34 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.003795ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #35 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.005796ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #36 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.007756ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #37 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.009926ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #38 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.011701ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #39 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.013192ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #40 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.016079ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #41 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.01803ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #42 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.02059ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #43 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.022568ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #44 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.024382ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #45 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.026428ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #46 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.027989ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #47 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.029811ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #48 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.031665ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #49 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.034021ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #50 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.035928ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #51 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.037675ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #52 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.038936ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #53 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.040622ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #54 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.042343ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #55 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.044111ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #56 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.046084ms 2023-03-06T17:54:53.204Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #57 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.047867ms 2023-03-06T17:54:53.205Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #58 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.064403ms 2023-03-06T17:54:53.205Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #59 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.066238ms 2023-03-06T17:54:53.205Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #60 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.068164ms 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #61 for future & fallible event' TIMED OUT after 150.945148ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #61 for future & fallible event' ended after running for 607.431346ms -- stats: | ok: 2 events; avg 101.099685ms - 3.29255/sec | time out: 2 events; avg 151.451737ms - 3.29255/sec | failed: 2 events; avg 50.883114ms - 3.29255/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #62 for future & fallible event' TIMED OUT after 150.965329ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #62 for future & fallible event' ended after running for 607.438279ms -- stats: | ok: 2 events; avg 101.099633ms - 3.29252/sec | time out: 2 events; avg 151.468024ms - 3.29252/sec | failed: 2 events; avg 50.900921ms - 3.29252/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #63 for future & fallible event' TIMED OUT after 150.967141ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #63 for future & fallible event' ended after running for 607.441072ms -- stats: | ok: 2 events; avg 101.098761ms - 3.29250/sec | time out: 2 events; avg 151.469111ms - 3.29250/sec | failed: 2 events; avg 50.904021ms - 3.29250/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #64 for future & fallible event' TIMED OUT after 150.969035ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #64 for future & fallible event' ended after running for 607.443619ms -- stats: | ok: 2 events; avg 101.098195ms - 3.29249/sec | time out: 2 events; avg 151.469946ms - 3.29249/sec | failed: 2 events; avg 50.906155ms - 3.29249/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #65 for future & fallible event' TIMED OUT after 150.970614ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #65 for future & fallible event' ended after running for 607.445849ms -- stats: | ok: 2 events; avg 101.09745ms - 3.29247/sec | time out: 2 events; avg 151.470408ms - 3.29247/sec | failed: 2 events; avg 50.908014ms - 3.29247/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #66 for future & fallible event' TIMED OUT after 150.972904ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #66 for future & fallible event' ended after running for 607.4477ms -- stats: | ok: 2 events; avg 101.096839ms - 3.29246/sec | time out: 2 events; avg 151.471466ms - 3.29246/sec | failed: 2 events; avg 50.909854ms - 3.29246/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #67 for future & fallible event' TIMED OUT after 150.974915ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #67 for future & fallible event' ended after running for 607.450147ms -- stats: | ok: 2 events; avg 101.096198ms - 3.29245/sec | time out: 2 events; avg 151.472002ms - 3.29245/sec | failed: 2 events; avg 50.911814ms - 3.29245/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #68 for future & fallible event' TIMED OUT after 150.97689ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #68 for future & fallible event' ended after running for 607.453609ms -- stats: | ok: 2 events; avg 101.095565ms - 3.29243/sec | time out: 2 events; avg 151.472762ms - 3.29243/sec | failed: 2 events; avg 50.913755ms - 3.29243/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #69 for future & fallible event' TIMED OUT after 150.980574ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #69 for future & fallible event' ended after running for 607.456521ms -- stats: | ok: 2 events; avg 101.09476ms - 3.29242/sec | time out: 2 events; avg 151.474327ms - 3.29242/sec | failed: 2 events; avg 50.915457ms - 3.29242/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #70 for future & fallible event' TIMED OUT after 150.982575ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #70 for future & fallible event' ended after running for 607.458695ms -- stats: | ok: 2 events; avg 101.094246ms - 3.29240/sec | time out: 2 events; avg 151.475146ms - 3.29240/sec | failed: 2 events; avg 50.916925ms - 3.29240/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #71 for future & fallible event' TIMED OUT after 150.984216ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #71 for future & fallible event' ended after running for 607.460313ms -- stats: | ok: 2 events; avg 101.093605ms - 3.29240/sec | time out: 2 events; avg 151.475593ms - 3.29240/sec | failed: 2 events; avg 50.918773ms - 3.29240/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #72 for future & fallible event' TIMED OUT after 150.986026ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #72 for future & fallible event' ended after running for 607.461915ms -- stats: | ok: 2 events; avg 101.092905ms - 3.29239/sec | time out: 2 events; avg 151.476294ms - 3.29239/sec | failed: 2 events; avg 50.920531ms - 3.29239/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #73 for future & fallible event' TIMED OUT after 150.987412ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #73 for future & fallible event' ended after running for 607.463539ms -- stats: | ok: 2 events; avg 101.092264ms - 3.29238/sec | time out: 2 events; avg 151.476756ms - 3.29238/sec | failed: 2 events; avg 50.922289ms - 3.29238/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #74 for future & fallible event' TIMED OUT after 150.988924ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #74 for future & fallible event' ended after running for 607.464834ms -- stats: | ok: 2 events; avg 101.091608ms - 3.29237/sec | time out: 2 events; avg 151.477322ms - 3.29237/sec | failed: 2 events; avg 50.924264ms - 3.29237/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #75 for future & fallible event' TIMED OUT after 150.990764ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #75 for future & fallible event' ended after running for 607.466008ms -- stats: | ok: 2 events; avg 101.090968ms - 3.29237/sec | time out: 2 events; avg 151.477963ms - 3.29237/sec | failed: 2 events; avg 50.926127ms - 3.29237/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #76 for future & fallible event' TIMED OUT after 150.996167ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #76 for future & fallible event' ended after running for 607.472144ms -- stats: | ok: 2 events; avg 101.090297ms - 3.29233/sec | time out: 2 events; avg 151.480377ms - 3.29233/sec | failed: 2 events; avg 50.927632ms - 3.29233/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #77 for future & fallible event' TIMED OUT after 150.997997ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #77 for future & fallible event' ended after running for 607.473495ms -- stats: | ok: 2 events; avg 101.089753ms - 3.29232/sec | time out: 2 events; avg 151.481017ms - 3.29232/sec | failed: 2 events; avg 50.929703ms - 3.29232/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #78 for future & fallible event' TIMED OUT after 150.999672ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #78 for future & fallible event' ended after running for 607.475049ms -- stats: | ok: 2 events; avg 101.088673ms - 3.29232/sec | time out: 2 events; avg 151.481748ms - 3.29232/sec | failed: 2 events; avg 50.931521ms - 3.29232/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #79 for future & fallible event' TIMED OUT after 151.001842ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #79 for future & fallible event' ended after running for 607.476755ms -- stats: | ok: 2 events; avg 101.087868ms - 3.29231/sec | time out: 2 events; avg 151.483178ms - 3.29231/sec | failed: 2 events; avg 50.933354ms - 3.29231/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #80 for future & fallible event' TIMED OUT after 151.00348ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #80 for future & fallible event' ended after running for 607.480919ms -- stats: | ok: 2 events; avg 101.087257ms - 3.29228/sec | time out: 2 events; avg 151.484072ms - 3.29228/sec | failed: 2 events; avg 50.93497ms - 3.29228/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #81 for future & fallible event' TIMED OUT after 151.009536ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #81 for future & fallible event' ended after running for 607.486092ms -- stats: | ok: 2 events; avg 101.086468ms - 3.29226/sec | time out: 2 events; avg 151.486665ms - 3.29226/sec | failed: 2 events; avg 50.936889ms - 3.29226/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #82 for future & fallible event' TIMED OUT after 151.013839ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #82 for future & fallible event' ended after running for 607.48979ms -- stats: | ok: 2 events; avg 101.085916ms - 3.29224/sec | time out: 2 events; avg 151.488841ms - 3.29224/sec | failed: 2 events; avg 50.938841ms - 3.29224/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #83 for future & fallible event' TIMED OUT after 151.018033ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #83 for future & fallible event' ended after running for 607.494262ms -- stats: | ok: 2 events; avg 101.08529ms - 3.29221/sec | time out: 2 events; avg 151.490688ms - 3.29221/sec | failed: 2 events; avg 50.940402ms - 3.29221/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #84 for future & fallible event' TIMED OUT after 151.022546ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #84 for future & fallible event' ended after running for 607.498606ms -- stats: | ok: 2 events; avg 101.084076ms - 3.29219/sec | time out: 2 events; avg 151.49273ms - 3.29219/sec | failed: 2 events; avg 50.942056ms - 3.29219/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #85 for future & fallible event' TIMED OUT after 151.026441ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #85 for future & fallible event' ended after running for 607.502826ms -- stats: | ok: 2 events; avg 101.082876ms - 3.29217/sec | time out: 2 events; avg 151.495188ms - 3.29217/sec | failed: 2 events; avg 50.94406ms - 3.29217/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #86 for future & fallible event' TIMED OUT after 151.03098ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #86 for future & fallible event' ended after running for 607.507944ms -- stats: | ok: 2 events; avg 101.081923ms - 3.29214/sec | time out: 2 events; avg 151.498109ms - 3.29214/sec | failed: 2 events; avg 50.945688ms - 3.29214/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #87 for future & fallible event' TIMED OUT after 151.034741ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #87 for future & fallible event' ended after running for 607.512271ms -- stats: | ok: 2 events; avg 101.080664ms - 3.29211/sec | time out: 2 events; avg 151.500225ms - 3.29211/sec | failed: 2 events; avg 50.947472ms - 3.29211/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #88 for future & fallible event' TIMED OUT after 151.039082ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #88 for future & fallible event' ended after running for 607.515977ms -- stats: | ok: 2 events; avg 101.079829ms - 3.29209/sec | time out: 2 events; avg 151.502818ms - 3.29209/sec | failed: 2 events; avg 50.949223ms - 3.29209/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #89 for future & fallible event' TIMED OUT after 151.045679ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #89 for future & fallible event' ended after running for 607.523224ms -- stats: | ok: 2 events; avg 101.079047ms - 3.29206/sec | time out: 2 events; avg 151.506126ms - 3.29206/sec | failed: 2 events; avg 50.950952ms - 3.29206/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #90 for future & fallible event' TIMED OUT after 151.05089ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #90 for future & fallible event' ended after running for 607.527823ms -- stats: | ok: 2 events; avg 101.078421ms - 3.29203/sec | time out: 2 events; avg 151.508629ms - 3.29203/sec | failed: 2 events; avg 50.952591ms - 3.29203/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #91 for future & fallible event' TIMED OUT after 151.054844ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #91 for future & fallible event' ended after running for 607.531914ms -- stats: | ok: 2 events; avg 101.077884ms - 3.29201/sec | time out: 2 events; avg 151.510388ms - 3.29201/sec | failed: 2 events; avg 50.95423ms - 3.29201/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #92 for future & fallible event' TIMED OUT after 151.058897ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #92 for future & fallible event' ended after running for 607.535738ms -- stats: | ok: 2 events; avg 101.077333ms - 3.29199/sec | time out: 2 events; avg 151.512146ms - 3.29199/sec | failed: 2 events; avg 50.956167ms - 3.29199/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #93 for future & fallible event' TIMED OUT after 151.062734ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #93 for future & fallible event' ended after running for 607.539646ms -- stats: | ok: 2 events; avg 101.076782ms - 3.29197/sec | time out: 2 events; avg 151.51237ms - 3.29197/sec | failed: 2 events; avg 50.957914ms - 3.29197/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #94 for future & fallible event' TIMED OUT after 151.067585ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #94 for future & fallible event' ended after running for 607.544248ms -- stats: | ok: 2 events; avg 101.076037ms - 3.29194/sec | time out: 2 events; avg 151.514322ms - 3.29194/sec | failed: 2 events; avg 50.961375ms - 3.29194/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #95 for future & fallible event' TIMED OUT after 151.068381ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #95 for future & fallible event' ended after running for 607.548482ms -- stats: | ok: 2 events; avg 101.075485ms - 3.29192/sec | time out: 2 events; avg 151.514068ms - 3.29192/sec | failed: 2 events; avg 50.96329ms - 3.29192/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #96 for future & fallible event' TIMED OUT after 151.070314ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #96 for future & fallible event' ended after running for 607.552714ms -- stats: | ok: 2 events; avg 101.075001ms - 3.29190/sec | time out: 2 events; avg 151.513964ms - 3.29190/sec | failed: 2 events; avg 50.967999ms - 3.29190/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #97 for future & fallible event' TIMED OUT after 151.075298ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #97 for future & fallible event' ended after running for 607.558876ms -- stats: | ok: 2 events; avg 101.074621ms - 3.29186/sec | time out: 2 events; avg 151.514977ms - 3.29186/sec | failed: 2 events; avg 50.971031ms - 3.29186/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #98 for future & fallible event' TIMED OUT after 151.080287ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #98 for future & fallible event' ended after running for 607.56352ms -- stats: | ok: 2 events; avg 101.073906ms - 3.29184/sec | time out: 2 events; avg 151.516467ms - 3.29184/sec | failed: 2 events; avg 50.974242ms - 3.29184/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #99 for future & fallible event' TIMED OUT after 151.084747ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #99 for future & fallible event' ended after running for 607.567875ms -- stats: | ok: 2 events; avg 101.072118ms - 3.29181/sec | time out: 2 events; avg 151.517898ms - 3.29181/sec | failed: 2 events; avg 50.976541ms - 3.29181/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #100 for future & fallible event' TIMED OUT after 151.089785ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #100 for future & fallible event' ended after running for 607.572602ms -- stats: | ok: 2 events; avg 101.071537ms - 3.29179/sec | time out: 2 events; avg 151.521012ms - 3.29179/sec | failed: 2 events; avg 50.979197ms - 3.29179/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #101 for future & fallible event' TIMED OUT after 151.094541ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #101 for future & fallible event' ended after running for 607.577668ms -- stats: | ok: 2 events; avg 101.070434ms - 3.29176/sec | time out: 2 events; avg 151.522517ms - 3.29176/sec | failed: 2 events; avg 50.981455ms - 3.29176/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #102 for future & fallible event' TIMED OUT after 151.099677ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #102 for future & fallible event' ended after running for 607.582812ms -- stats: | ok: 2 events; avg 101.069547ms - 3.29173/sec | time out: 2 events; avg 151.524812ms - 3.29173/sec | failed: 2 events; avg 50.983757ms - 3.29173/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #103 for future & fallible event' TIMED OUT after 151.104401ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #103 for future & fallible event' ended after running for 607.587015ms -- stats: | ok: 2 events; avg 101.068258ms - 3.29171/sec | time out: 2 events; avg 151.52663ms - 3.29171/sec | failed: 2 events; avg 50.985783ms - 3.29171/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #104 for future & fallible event' TIMED OUT after 151.109596ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #104 for future & fallible event' ended after running for 607.59231ms -- stats: | ok: 2 events; avg 101.067409ms - 3.29168/sec | time out: 2 events; avg 151.529133ms - 3.29168/sec | failed: 2 events; avg 50.988264ms - 3.29168/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #105 for future & fallible event' TIMED OUT after 151.114065ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #105 for future & fallible event' ended after running for 607.597544ms -- stats: | ok: 2 events; avg 101.066358ms - 3.29165/sec | time out: 2 events; avg 151.531294ms - 3.29165/sec | failed: 2 events; avg 50.990783ms - 3.29165/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #106 for future & fallible event' TIMED OUT after 151.119402ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #106 for future & fallible event' ended after running for 607.602081ms -- stats: | ok: 2 events; avg 101.065151ms - 3.29163/sec | time out: 2 events; avg 151.533544ms - 3.29163/sec | failed: 2 events; avg 50.993003ms - 3.29163/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #107 for future & fallible event' TIMED OUT after 151.124373ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #107 for future & fallible event' ended after running for 607.60668ms -- stats: | ok: 2 events; avg 101.063758ms - 3.29160/sec | time out: 2 events; avg 151.534349ms - 3.29160/sec | failed: 2 events; avg 50.995417ms - 3.29160/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #108 for future & fallible event' TIMED OUT after 151.128487ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #108 for future & fallible event' ended after running for 607.610836ms -- stats: | ok: 2 events; avg 101.06308ms - 3.29158/sec | time out: 2 events; avg 151.536316ms - 3.29158/sec | failed: 2 events; avg 50.999396ms - 3.29158/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #109 for future & fallible event' TIMED OUT after 151.132303ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #109 for future & fallible event' ended after running for 607.6144ms -- stats: | ok: 2 events; avg 101.062387ms - 3.29156/sec | time out: 2 events; avg 151.537359ms - 3.29156/sec | failed: 2 events; avg 51.002134ms - 3.29156/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #110 for future & fallible event' TIMED OUT after 151.13668ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #110 for future & fallible event' ended after running for 607.61871ms -- stats: | ok: 2 events; avg 101.061091ms - 3.29154/sec | time out: 2 events; avg 151.5387ms - 3.29154/sec | failed: 2 events; avg 51.004142ms - 3.29154/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #111 for future & fallible event' TIMED OUT after 151.142822ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #111 for future & fallible event' ended after running for 607.624938ms -- stats: | ok: 2 events; avg 101.060092ms - 3.29150/sec | time out: 2 events; avg 151.541412ms - 3.29150/sec | failed: 2 events; avg 51.006962ms - 3.29150/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #112 for future & fallible event' TIMED OUT after 151.147687ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #112 for future & fallible event' ended after running for 607.630443ms -- stats: | ok: 2 events; avg 101.059079ms - 3.29147/sec | time out: 2 events; avg 151.542932ms - 3.29147/sec | failed: 2 events; avg 51.009782ms - 3.29147/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #113 for future & fallible event' TIMED OUT after 151.153023ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #113 for future & fallible event' ended after running for 607.635198ms -- stats: | ok: 2 events; avg 101.057976ms - 3.29145/sec | time out: 2 events; avg 151.544809ms - 3.29145/sec | failed: 2 events; avg 51.012546ms - 3.29145/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #114 for future & fallible event' TIMED OUT after 151.157731ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #114 for future & fallible event' ended after running for 607.639564ms -- stats: | ok: 2 events; avg 101.056501ms - 3.29142/sec | time out: 2 events; avg 151.547283ms - 3.29142/sec | failed: 2 events; avg 51.015168ms - 3.29142/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #115 for future & fallible event' TIMED OUT after 151.133403ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #115 for future & fallible event' ended after running for 607.644212ms -- stats: | ok: 2 events; avg 101.054899ms - 3.29140/sec | time out: 2 events; avg 151.534677ms - 3.29140/sec | failed: 2 events; avg 51.03118ms - 3.29140/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #116 for future & fallible event' TIMED OUT after 151.138308ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #116 for future & fallible event' ended after running for 607.649153ms -- stats: | ok: 2 events; avg 101.053059ms - 3.29137/sec | time out: 2 events; avg 151.536733ms - 3.29137/sec | failed: 2 events; avg 51.034287ms - 3.29137/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #117 for future & fallible event' TIMED OUT after 151.143099ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #117 for future & fallible event' ended after running for 607.654224ms -- stats: | ok: 2 events; avg 101.052582ms - 3.29135/sec | time out: 2 events; avg 151.539385ms - 3.29135/sec | failed: 2 events; avg 51.037479ms - 3.29135/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #118 for future & fallible event' TIMED OUT after 151.148046ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #118 for future & fallible event' ended after running for 607.660164ms -- stats: | ok: 2 events; avg 101.051696ms - 3.29131/sec | time out: 2 events; avg 151.541039ms - 3.29131/sec | failed: 2 events; avg 51.039975ms - 3.29131/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #119 for future & fallible event' TIMED OUT after 151.152082ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #119 for future & fallible event' ended after running for 607.664053ms -- stats: | ok: 2 events; avg 101.0506ms - 3.29129/sec | time out: 2 events; avg 151.542485ms - 3.29129/sec | failed: 2 events; avg 51.042713ms - 3.29129/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #120 for future & fallible event' TIMED OUT after 151.155227ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #120 for future & fallible event' ended after running for 607.66851ms -- stats: | ok: 2 events; avg 101.049446ms - 3.29127/sec | time out: 2 events; avg 151.54399ms - 3.29127/sec | failed: 2 events; avg 51.045388ms - 3.29127/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #121 for future & fallible event' TIMED OUT after 151.159172ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #121 for future & fallible event' ended after running for 607.673943ms -- stats: | ok: 2 events; avg 101.048291ms - 3.29124/sec | time out: 2 events; avg 151.545554ms - 3.29124/sec | failed: 2 events; avg 51.047873ms - 3.29124/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #122 for future & fallible event' TIMED OUT after 151.188115ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #122 for future & fallible event' ended after running for 607.684635ms -- stats: | ok: 2 events; avg 101.140201ms - 3.29118/sec | time out: 2 events; avg 151.559681ms - 3.29118/sec | failed: 2 events; avg 51.133022ms - 3.29118/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #123 for future & fallible event' TIMED OUT after 151.193957ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #123 for future & fallible event' ended after running for 607.687385ms -- stats: | ok: 2 events; avg 101.139158ms - 3.29117/sec | time out: 2 events; avg 151.562661ms - 3.29117/sec | failed: 2 events; avg 51.135477ms - 3.29117/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #124 for future & fallible event' TIMED OUT after 151.194915ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #124 for future & fallible event' ended after running for 607.692404ms -- stats: | ok: 2 events; avg 101.137042ms - 3.29114/sec | time out: 2 events; avg 151.562661ms - 3.29114/sec | failed: 2 events; avg 51.138103ms - 3.29114/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #125 for future & fallible event' TIMED OUT after 151.200922ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #125 for future & fallible event' ended after running for 607.69849ms -- stats: | ok: 2 events; avg 101.135001ms - 3.29111/sec | time out: 2 events; avg 151.565254ms - 3.29111/sec | failed: 2 events; avg 51.142536ms - 3.29111/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #126 for future & fallible event' TIMED OUT after 151.205934ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #126 for future & fallible event' ended after running for 607.702963ms -- stats: | ok: 2 events; avg 101.133063ms - 3.29108/sec | time out: 2 events; avg 151.567101ms - 3.29108/sec | failed: 2 events; avg 51.145084ms - 3.29108/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #127 for future & fallible event' TIMED OUT after 151.210674ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #127 for future & fallible event' ended after running for 607.708209ms -- stats: | ok: 2 events; avg 101.123646ms - 3.29105/sec | time out: 2 events; avg 151.5688ms - 3.29105/sec | failed: 2 events; avg 51.147662ms - 3.29105/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #128 for future & fallible event' TIMED OUT after 151.215395ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #128 for future & fallible event' ended after running for 607.697152ms -- stats: | ok: 2 events; avg 101.121202ms - 3.29111/sec | time out: 2 events; avg 151.570365ms - 3.29111/sec | failed: 2 events; avg 51.150411ms - 3.29111/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #129 for future & fallible event' TIMED OUT after 151.219979ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #129 for future & fallible event' ended after running for 607.701187ms -- stats: | ok: 2 events; avg 101.11931ms - 3.29109/sec | time out: 2 events; avg 151.572138ms - 3.29109/sec | failed: 2 events; avg 51.153459ms - 3.29109/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #130 for future & fallible event' TIMED OUT after 151.223806ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #130 for future & fallible event' ended after running for 607.705765ms -- stats: | ok: 2 events; avg 101.117313ms - 3.29107/sec | time out: 2 events; avg 151.573166ms - 3.29107/sec | failed: 2 events; avg 51.156051ms - 3.29107/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #131 for future & fallible event' TIMED OUT after 151.22722ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #131 for future & fallible event' ended after running for 607.710309ms -- stats: | ok: 2 events; avg 101.115257ms - 3.29104/sec | time out: 2 events; avg 151.57415ms - 3.29104/sec | failed: 2 events; avg 51.159091ms - 3.29104/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #132 for future & fallible event' TIMED OUT after 151.231547ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #132 for future & fallible event' ended after running for 607.714886ms -- stats: | ok: 2 events; avg 101.11329ms - 3.29102/sec | time out: 2 events; avg 151.575685ms - 3.29102/sec | failed: 2 events; avg 51.161692ms - 3.29102/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #133 for future & fallible event' TIMED OUT after 151.236232ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #133 for future & fallible event' ended after running for 607.718927ms -- stats: | ok: 2 events; avg 101.111218ms - 3.29100/sec | time out: 2 events; avg 151.576832ms - 3.29100/sec | failed: 2 events; avg 51.164754ms - 3.29100/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #134 for future & fallible event' TIMED OUT after 151.240489ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #134 for future & fallible event' ended after running for 607.723973ms -- stats: | ok: 2 events; avg 101.108797ms - 3.29097/sec | time out: 2 events; avg 151.578382ms - 3.29097/sec | failed: 2 events; avg 51.167995ms - 3.29097/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #135 for future & fallible event' TIMED OUT after 151.243443ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #135 for future & fallible event' ended after running for 607.728869ms -- stats: | ok: 2 events; avg 101.107009ms - 3.29094/sec | time out: 2 events; avg 151.57935ms - 3.29094/sec | failed: 2 events; avg 51.170953ms - 3.29094/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #136 for future & fallible event' TIMED OUT after 151.247892ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #136 for future & fallible event' ended after running for 607.733129ms -- stats: | ok: 2 events; avg 101.105124ms - 3.29092/sec | time out: 2 events; avg 151.580721ms - 3.29092/sec | failed: 2 events; avg 51.174693ms - 3.29092/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #137 for future & fallible event' TIMED OUT after 151.252042ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #137 for future & fallible event' ended after running for 607.7377ms -- stats: | ok: 2 events; avg 101.103142ms - 3.29089/sec | time out: 2 events; avg 151.582018ms - 3.29089/sec | failed: 2 events; avg 51.177442ms - 3.29089/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #138 for future & fallible event' TIMED OUT after 151.256665ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #138 for future & fallible event' ended after running for 607.742498ms -- stats: | ok: 2 events; avg 101.101279ms - 3.29087/sec | time out: 2 events; avg 151.583612ms - 3.29087/sec | failed: 2 events; avg 51.179919ms - 3.29087/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #139 for future & fallible event' TIMED OUT after 151.262289ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #139 for future & fallible event' ended after running for 607.748132ms -- stats: | ok: 2 events; avg 101.099707ms - 3.29084/sec | time out: 2 events; avg 151.585639ms - 3.29084/sec | failed: 2 events; avg 51.182553ms - 3.29084/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #140 for future & fallible event' TIMED OUT after 151.266808ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #140 for future & fallible event' ended after running for 607.753264ms -- stats: | ok: 2 events; avg 101.097926ms - 3.29081/sec | time out: 2 events; avg 151.587009ms - 3.29081/sec | failed: 2 events; avg 51.18531ms - 3.29081/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #141 for future & fallible event' TIMED OUT after 151.271877ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #141 for future & fallible event' ended after running for 607.757874ms -- stats: | ok: 2 events; avg 101.095676ms - 3.29078/sec | time out: 2 events; avg 151.589006ms - 3.29078/sec | failed: 2 events; avg 51.18832ms - 3.29078/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #142 for future & fallible event' TIMED OUT after 151.276704ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #142 for future & fallible event' ended after running for 607.762235ms -- stats: | ok: 2 events; avg 101.09356ms - 3.29076/sec | time out: 2 events; avg 151.590943ms - 3.29076/sec | failed: 2 events; avg 51.190875ms - 3.29076/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #143 for future & fallible event' TIMED OUT after 151.280773ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #143 for future & fallible event' ended after running for 607.766217ms -- stats: | ok: 2 events; avg 101.09102ms - 3.29074/sec | time out: 2 events; avg 151.592344ms - 3.29074/sec | failed: 2 events; avg 51.193234ms - 3.29074/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #144 for future & fallible event' TIMED OUT after 151.284771ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #144 for future & fallible event' ended after running for 607.770778ms -- stats: | ok: 2 events; avg 101.08874ms - 3.29071/sec | time out: 2 events; avg 151.59373ms - 3.29071/sec | failed: 2 events; avg 51.195875ms - 3.29071/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #145 for future & fallible event' TIMED OUT after 151.289487ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #145 for future & fallible event' ended after running for 607.775353ms -- stats: | ok: 2 events; avg 101.087131ms - 3.29069/sec | time out: 2 events; avg 151.59595ms - 3.29069/sec | failed: 2 events; avg 51.198971ms - 3.29069/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #146 for future & fallible event' TIMED OUT after 151.295147ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #146 for future & fallible event' ended after running for 607.781567ms -- stats: | ok: 2 events; avg 101.085261ms - 3.29066/sec | time out: 2 events; avg 151.597738ms - 3.29066/sec | failed: 2 events; avg 51.201239ms - 3.29066/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #147 for future & fallible event' TIMED OUT after 151.299866ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #147 for future & fallible event' ended after running for 607.786176ms -- stats: | ok: 2 events; avg 101.083338ms - 3.29063/sec | time out: 2 events; avg 151.599348ms - 3.29063/sec | failed: 2 events; avg 51.204294ms - 3.29063/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #148 for future & fallible event' TIMED OUT after 151.304452ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #148 for future & fallible event' ended after running for 607.790614ms -- stats: | ok: 2 events; avg 101.081342ms - 3.29061/sec | time out: 2 events; avg 151.6013ms - 3.29061/sec | failed: 2 events; avg 51.207013ms - 3.29061/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #149 for future & fallible event' TIMED OUT after 151.308781ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #149 for future & fallible event' ended after running for 607.795013ms -- stats: | ok: 2 events; avg 101.079501ms - 3.29058/sec | time out: 2 events; avg 151.602507ms - 3.29058/sec | failed: 2 events; avg 51.209386ms - 3.29058/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #150 for future & fallible event' TIMED OUT after 151.312945ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #150 for future & fallible event' ended after running for 607.80009ms -- stats: | ok: 2 events; avg 101.076975ms - 3.29056/sec | time out: 2 events; avg 151.603788ms - 3.29056/sec | failed: 2 events; avg 51.212206ms - 3.29056/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #151 for future & fallible event' TIMED OUT after 151.318138ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #151 for future & fallible event' ended after running for 607.803962ms -- stats: | ok: 2 events; avg 101.075165ms - 3.29053/sec | time out: 2 events; avg 151.605964ms - 3.29053/sec | failed: 2 events; avg 51.214758ms - 3.29053/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #152 for future & fallible event' TIMED OUT after 151.322697ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #152 for future & fallible event' ended after running for 607.808704ms -- stats: | ok: 2 events; avg 101.073444ms - 3.29051/sec | time out: 2 events; avg 151.607484ms - 3.29051/sec | failed: 2 events; avg 51.217277ms - 3.29051/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #153 for future & fallible event' TIMED OUT after 151.328859ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #153 for future & fallible event' ended after running for 607.815641ms -- stats: | ok: 2 events; avg 101.071566ms - 3.29047/sec | time out: 2 events; avg 151.609764ms - 3.29047/sec | failed: 2 events; avg 51.220253ms - 3.29047/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #154 for future & fallible event' TIMED OUT after 151.335158ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #154 for future & fallible event' ended after running for 607.821605ms -- stats: | ok: 2 events; avg 101.069786ms - 3.29044/sec | time out: 2 events; avg 151.612192ms - 3.29044/sec | failed: 2 events; avg 51.223047ms - 3.29044/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #155 for future & fallible event' TIMED OUT after 151.340822ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #155 for future & fallible event' ended after running for 607.827477ms -- stats: | ok: 2 events; avg 101.067886ms - 3.29041/sec | time out: 2 events; avg 151.614249ms - 3.29041/sec | failed: 2 events; avg 51.225629ms - 3.29041/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #156 for future & fallible event' TIMED OUT after 151.344908ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #156 for future & fallible event' ended after running for 607.832004ms -- stats: | ok: 2 events; avg 101.065978ms - 3.29038/sec | time out: 2 events; avg 151.614919ms - 3.29038/sec | failed: 2 events; avg 51.228568ms - 3.29038/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #157 for future & fallible event' TIMED OUT after 151.348604ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #157 for future & fallible event' ended after running for 607.836705ms -- stats: | ok: 2 events; avg 101.063892ms - 3.29036/sec | time out: 2 events; avg 151.615679ms - 3.29036/sec | failed: 2 events; avg 51.231589ms - 3.29036/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #158 for future & fallible event' TIMED OUT after 151.352948ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #158 for future & fallible event' ended after running for 607.841544ms -- stats: | ok: 2 events; avg 101.062328ms - 3.29033/sec | time out: 2 events; avg 151.617512ms - 3.29033/sec | failed: 2 events; avg 51.234841ms - 3.29033/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #159 for future & fallible event' TIMED OUT after 151.356926ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #159 for future & fallible event' ended after running for 607.846583ms -- stats: | ok: 2 events; avg 101.06048ms - 3.29030/sec | time out: 2 events; avg 151.61863ms - 3.29030/sec | failed: 2 events; avg 51.237553ms - 3.29030/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #160 for future & fallible event' TIMED OUT after 151.361771ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #160 for future & fallible event' ended after running for 607.85084ms -- stats: | ok: 2 events; avg 101.058826ms - 3.29028/sec | time out: 2 events; avg 151.620269ms - 3.29028/sec | failed: 2 events; avg 51.240597ms - 3.29028/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #161 for future & fallible event' TIMED OUT after 151.367002ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #161 for future & fallible event' ended after running for 607.856027ms -- stats: | ok: 2 events; avg 101.056769ms - 3.29025/sec | time out: 2 events; avg 151.622176ms - 3.29025/sec | failed: 2 events; avg 51.243119ms - 3.29025/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #162 for future & fallible event' TIMED OUT after 151.3716ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #162 for future & fallible event' ended after running for 607.861295ms -- stats: | ok: 2 events; avg 101.054952ms - 3.29022/sec | time out: 2 events; avg 151.623964ms - 3.29022/sec | failed: 2 events; avg 51.245652ms - 3.29022/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #163 for future & fallible event' TIMED OUT after 151.376448ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #163 for future & fallible event' ended after running for 607.865877ms -- stats: | ok: 2 events; avg 101.053119ms - 3.29020/sec | time out: 2 events; avg 151.625633ms - 3.29020/sec | failed: 2 events; avg 51.248204ms - 3.29020/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #164 for future & fallible event' TIMED OUT after 151.381217ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #164 for future & fallible event' ended after running for 607.870699ms -- stats: | ok: 2 events; avg 101.051509ms - 3.29017/sec | time out: 2 events; avg 151.627168ms - 3.29017/sec | failed: 2 events; avg 51.250584ms - 3.29017/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #165 for future & fallible event' TIMED OUT after 151.385635ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #165 for future & fallible event' ended after running for 607.875376ms -- stats: | ok: 2 events; avg 101.049915ms - 3.29015/sec | time out: 2 events; avg 151.628569ms - 3.29015/sec | failed: 2 events; avg 51.253248ms - 3.29015/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #166 for future & fallible event' TIMED OUT after 151.390883ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #166 for future & fallible event' ended after running for 607.880728ms -- stats: | ok: 2 events; avg 101.048075ms - 3.29012/sec | time out: 2 events; avg 151.63058ms - 3.29012/sec | failed: 2 events; avg 51.2558ms - 3.29012/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #167 for future & fallible event' TIMED OUT after 151.396377ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #167 for future & fallible event' ended after running for 607.895248ms -- stats: | ok: 2 events; avg 101.045825ms - 3.29004/sec | time out: 2 events; avg 151.632637ms - 3.29004/sec | failed: 2 events; avg 51.258296ms - 3.29004/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #168 for future & fallible event' TIMED OUT after 151.411443ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #168 for future & fallible event' ended after running for 607.900034ms -- stats: | ok: 2 events; avg 101.043813ms - 3.29001/sec | time out: 2 events; avg 151.636377ms - 3.29001/sec | failed: 2 events; avg 51.261015ms - 3.29001/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #169 for future & fallible event' TIMED OUT after 151.401374ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #169 for future & fallible event' ended after running for 607.904137ms -- stats: | ok: 2 events; avg 101.041876ms - 3.28999/sec | time out: 2 events; avg 151.630312ms - 3.28999/sec | failed: 2 events; avg 51.273949ms - 3.28999/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #170 for future & fallible event' TIMED OUT after 151.405588ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #170 for future & fallible event' ended after running for 607.908513ms -- stats: | ok: 2 events; avg 101.039901ms - 3.28997/sec | time out: 2 events; avg 151.631474ms - 3.28997/sec | failed: 2 events; avg 51.276647ms - 3.28997/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #171 for future & fallible event' TIMED OUT after 151.410328ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #171 for future & fallible event' ended after running for 607.91243ms -- stats: | ok: 2 events; avg 101.038232ms - 3.28995/sec | time out: 2 events; avg 151.633114ms - 3.28995/sec | failed: 2 events; avg 51.279329ms - 3.28995/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #172 for future & fallible event' TIMED OUT after 151.415274ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #172 for future & fallible event' ended after running for 607.917926ms -- stats: | ok: 2 events; avg 101.036109ms - 3.28992/sec | time out: 2 events; avg 151.634663ms - 3.28992/sec | failed: 2 events; avg 51.281955ms - 3.28992/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #173 for future & fallible event' TIMED OUT after 151.420352ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #173 for future & fallible event' ended after running for 607.921945ms -- stats: | ok: 2 events; avg 101.033747ms - 3.28990/sec | time out: 2 events; avg 151.636571ms - 3.28990/sec | failed: 2 events; avg 51.284559ms - 3.28990/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #174 for future & fallible event' TIMED OUT after 151.425434ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #174 for future & fallible event' ended after running for 607.926357ms -- stats: | ok: 2 events; avg 101.031497ms - 3.28987/sec | time out: 2 events; avg 151.637912ms - 3.28987/sec | failed: 2 events; avg 51.287122ms - 3.28987/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #175 for future & fallible event' TIMED OUT after 151.430358ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #175 for future & fallible event' ended after running for 607.930636ms -- stats: | ok: 2 events; avg 101.028815ms - 3.28985/sec | time out: 2 events; avg 151.639655ms - 3.28985/sec | failed: 2 events; avg 51.289968ms - 3.28985/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #176 for future & fallible event' TIMED OUT after 151.435274ms 2023-03-06T17:54:53.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #176 for future & fallible event' ended after running for 607.934843ms -- stats: | ok: 2 events; avg 101.026691ms - 3.28983/sec | time out: 2 events; avg 151.641846ms - 3.28983/sec | failed: 2 events; avg 51.292814ms - 3.28983/sec 2023-03-06T17:54:53.355Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #177 for future & fallible event' TIMED OUT after 151.439094ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #177 for future & fallible event' ended after running for 607.939904ms -- stats: | ok: 2 events; avg 101.024635ms - 3.28980/sec | time out: 2 events; avg 151.643172ms - 3.28980/sec | failed: 2 events; avg 51.295478ms - 3.28980/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #178 for future & fallible event' TIMED OUT after 151.443801ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #178 for future & fallible event' ended after running for 607.945408ms -- stats: | ok: 2 events; avg 101.022437ms - 3.28977/sec | time out: 2 events; avg 151.645094ms - 3.28977/sec | failed: 2 events; avg 51.29876ms - 3.28977/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #179 for future & fallible event' TIMED OUT after 151.448755ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #179 for future & fallible event' ended after running for 607.950577ms -- stats: | ok: 2 events; avg 101.020858ms - 3.28974/sec | time out: 2 events; avg 151.647329ms - 3.28974/sec | failed: 2 events; avg 51.30155ms - 3.28974/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #180 for future & fallible event' TIMED OUT after 151.453584ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #180 for future & fallible event' ended after running for 607.955799ms -- stats: | ok: 2 events; avg 101.019554ms - 3.28971/sec | time out: 2 events; avg 151.648819ms - 3.28971/sec | failed: 2 events; avg 51.304065ms - 3.28971/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #181 for future & fallible event' TIMED OUT after 151.459419ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #181 for future & fallible event' ended after running for 607.961946ms -- stats: | ok: 2 events; avg 101.018101ms - 3.28968/sec | time out: 2 events; avg 151.650816ms - 3.28968/sec | failed: 2 events; avg 51.306635ms - 3.28968/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #182 for future & fallible event' TIMED OUT after 151.464494ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #182 for future & fallible event' ended after running for 607.967244ms -- stats: | ok: 2 events; avg 101.016015ms - 3.28965/sec | time out: 2 events; avg 151.652634ms - 3.28965/sec | failed: 2 events; avg 51.309079ms - 3.28965/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #183 for future & fallible event' TIMED OUT after 151.47056ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #183 for future & fallible event' ended after running for 607.973787ms -- stats: | ok: 2 events; avg 101.014301ms - 3.28962/sec | time out: 2 events; avg 151.655585ms - 3.28962/sec | failed: 2 events; avg 51.310509ms - 3.28962/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #184 for future & fallible event' TIMED OUT after 151.475383ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #184 for future & fallible event' ended after running for 607.979125ms -- stats: | ok: 2 events; avg 101.012647ms - 3.28959/sec | time out: 2 events; avg 151.657969ms - 3.28959/sec | failed: 2 events; avg 51.313139ms - 3.28959/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #185 for future & fallible event' TIMED OUT after 151.480534ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #185 for future & fallible event' ended after running for 607.984713ms -- stats: | ok: 2 events; avg 101.011008ms - 3.28956/sec | time out: 2 events; avg 151.659936ms - 3.28956/sec | failed: 2 events; avg 51.315445ms - 3.28956/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #186 for future & fallible event' TIMED OUT after 151.485198ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #186 for future & fallible event' ended after running for 607.990478ms -- stats: | ok: 2 events; avg 101.008669ms - 3.28953/sec | time out: 2 events; avg 151.662052ms - 3.28953/sec | failed: 2 events; avg 51.317967ms - 3.28953/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #187 for future & fallible event' TIMED OUT after 151.490238ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #187 for future & fallible event' ended after running for 607.996643ms -- stats: | ok: 2 events; avg 101.007126ms - 3.28949/sec | time out: 2 events; avg 151.664779ms - 3.28949/sec | failed: 2 events; avg 51.320624ms - 3.28949/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #188 for future & fallible event' TIMED OUT after 151.496328ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #188 for future & fallible event' ended after running for 608.003142ms -- stats: | ok: 2 events; avg 101.005301ms - 3.28946/sec | time out: 2 events; avg 151.667163ms - 3.28946/sec | failed: 2 events; avg 51.323026ms - 3.28946/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #189 for future & fallible event' TIMED OUT after 151.501048ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #189 for future & fallible event' ended after running for 608.0089ms -- stats: | ok: 2 events; avg 101.004027ms - 3.28943/sec | time out: 2 events; avg 151.66904ms - 3.28943/sec | failed: 2 events; avg 51.325746ms - 3.28943/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #190 for future & fallible event' TIMED OUT after 151.486484ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #190 for future & fallible event' ended after running for 608.014396ms -- stats: | ok: 2 events; avg 101.002663ms - 3.28940/sec | time out: 2 events; avg 151.660785ms - 3.28940/sec | failed: 2 events; avg 51.328238ms - 3.28940/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #191 for future & fallible event' TIMED OUT after 151.491189ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #191 for future & fallible event' ended after running for 608.019877ms -- stats: | ok: 2 events; avg 101.001278ms - 3.28937/sec | time out: 2 events; avg 151.66232ms - 3.28937/sec | failed: 2 events; avg 51.340818ms - 3.28937/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #192 for future & fallible event' TIMED OUT after 151.495032ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #192 for future & fallible event' ended after running for 608.024914ms -- stats: | ok: 2 events; avg 100.999951ms - 3.28934/sec | time out: 2 events; avg 151.663274ms - 3.28934/sec | failed: 2 events; avg 51.343285ms - 3.28934/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #193 for future & fallible event' TIMED OUT after 151.499692ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #193 for future & fallible event' ended after running for 608.030509ms -- stats: | ok: 2 events; avg 100.998819ms - 3.28931/sec | time out: 2 events; avg 151.664734ms - 3.28931/sec | failed: 2 events; avg 51.345937ms - 3.28931/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #194 for future & fallible event' TIMED OUT after 151.50429ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #194 for future & fallible event' ended after running for 608.035776ms -- stats: | ok: 2 events; avg 100.997835ms - 3.28928/sec | time out: 2 events; avg 151.665956ms - 3.28928/sec | failed: 2 events; avg 51.348679ms - 3.28928/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #195 for future & fallible event' TIMED OUT after 151.509084ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #195 for future & fallible event' ended after running for 608.042054ms -- stats: | ok: 2 events; avg 100.996628ms - 3.28925/sec | time out: 2 events; avg 151.667297ms - 3.28925/sec | failed: 2 events; avg 51.351279ms - 3.28925/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #196 for future & fallible event' TIMED OUT after 151.514223ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #196 for future & fallible event' ended after running for 608.048336ms -- stats: | ok: 2 events; avg 100.99563ms - 3.28921/sec | time out: 2 events; avg 151.66834ms - 3.28921/sec | failed: 2 events; avg 51.354077ms - 3.28921/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #197 for future & fallible event' TIMED OUT after 151.517587ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #197 for future & fallible event' ended after running for 608.053854ms -- stats: | ok: 2 events; avg 100.994445ms - 3.28918/sec | time out: 2 events; avg 151.668742ms - 3.28918/sec | failed: 2 events; avg 51.357232ms - 3.28918/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #198 for future & fallible event' TIMED OUT after 151.521683ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #198 for future & fallible event' ended after running for 608.059219ms -- stats: | ok: 2 events; avg 100.993231ms - 3.28915/sec | time out: 2 events; avg 151.66977ms - 3.28915/sec | failed: 2 events; avg 51.360734ms - 3.28915/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #199 for future & fallible event' TIMED OUT after 151.526124ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #199 for future & fallible event' ended after running for 608.064516ms -- stats: | ok: 2 events; avg 100.992002ms - 3.28912/sec | time out: 2 events; avg 151.670963ms - 3.28912/sec | failed: 2 events; avg 51.363751ms - 3.28912/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #200 for future & fallible event' TIMED OUT after 151.530964ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #200 for future & fallible event' ended after running for 608.070212ms -- stats: | ok: 2 events; avg 100.990713ms - 3.28909/sec | time out: 2 events; avg 151.672408ms - 3.28909/sec | failed: 2 events; avg 51.366385ms - 3.28909/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #201 for future & fallible event' TIMED OUT after 151.535677ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #201 for future & fallible event' ended after running for 608.076335ms -- stats: | ok: 2 events; avg 100.989118ms - 3.28906/sec | time out: 2 events; avg 151.673868ms - 3.28906/sec | failed: 2 events; avg 51.369004ms - 3.28906/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #202 for future & fallible event' TIMED OUT after 151.54175ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #202 for future & fallible event' ended after running for 608.082653ms -- stats: | ok: 2 events; avg 100.988239ms - 3.28903/sec | time out: 2 events; avg 151.675999ms - 3.28903/sec | failed: 2 events; avg 51.371597ms - 3.28903/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #203 for future & fallible event' TIMED OUT after 151.546144ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #203 for future & fallible event' ended after running for 608.088062ms -- stats: | ok: 2 events; avg 100.987062ms - 3.28900/sec | time out: 2 events; avg 151.676923ms - 3.28900/sec | failed: 2 events; avg 51.374178ms - 3.28900/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #204 for future & fallible event' TIMED OUT after 151.551039ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #204 for future & fallible event' ended after running for 608.093428ms -- stats: | ok: 2 events; avg 100.985892ms - 3.28897/sec | time out: 2 events; avg 151.678622ms - 3.28897/sec | failed: 2 events; avg 51.377036ms - 3.28897/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #205 for future & fallible event' TIMED OUT after 151.555275ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #205 for future & fallible event' ended after running for 608.099116ms -- stats: | ok: 2 events; avg 100.984752ms - 3.28894/sec | time out: 2 events; avg 151.679635ms - 3.28894/sec | failed: 2 events; avg 51.379353ms - 3.28894/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #206 for future & fallible event' TIMED OUT after 151.560036ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #206 for future & fallible event' ended after running for 608.104923ms -- stats: | ok: 2 events; avg 100.983292ms - 3.28891/sec | time out: 2 events; avg 151.680976ms - 3.28891/sec | failed: 2 events; avg 51.382151ms - 3.28891/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #207 for future & fallible event' TIMED OUT after 151.565289ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #207 for future & fallible event' ended after running for 608.110157ms -- stats: | ok: 2 events; avg 100.982219ms - 3.28888/sec | time out: 2 events; avg 151.682854ms - 3.28888/sec | failed: 2 events; avg 51.384702ms - 3.28888/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #208 for future & fallible event' TIMED OUT after 151.569749ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #208 for future & fallible event' ended after running for 608.115253ms -- stats: | ok: 2 events; avg 100.980565ms - 3.28885/sec | time out: 2 events; avg 151.684031ms - 3.28885/sec | failed: 2 events; avg 51.386941ms - 3.28885/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #209 for future & fallible event' TIMED OUT after 151.574424ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #209 for future & fallible event' ended after running for 608.1212ms -- stats: | ok: 2 events; avg 100.979522ms - 3.28882/sec | time out: 2 events; avg 151.686043ms - 3.28882/sec | failed: 2 events; avg 51.389471ms - 3.28882/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #210 for future & fallible event' TIMED OUT after 151.579688ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #210 for future & fallible event' ended after running for 608.127469ms -- stats: | ok: 2 events; avg 100.978017ms - 3.28878/sec | time out: 2 events; avg 151.688039ms - 3.28878/sec | failed: 2 events; avg 51.391877ms - 3.28878/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #211 for future & fallible event' TIMED OUT after 151.585286ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #211 for future & fallible event' ended after running for 608.13371ms -- stats: | ok: 2 events; avg 100.976788ms - 3.28875/sec | time out: 2 events; avg 151.689947ms - 3.28875/sec | failed: 2 events; avg 51.394306ms - 3.28875/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #212 for future & fallible event' TIMED OUT after 151.590551ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #212 for future & fallible event' ended after running for 608.13919ms -- stats: | ok: 2 events; avg 100.975633ms - 3.28872/sec | time out: 2 events; avg 151.691869ms - 3.28872/sec | failed: 2 events; avg 51.396769ms - 3.28872/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #213 for future & fallible event' TIMED OUT after 151.594688ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #213 for future & fallible event' ended after running for 608.144439ms -- stats: | ok: 2 events; avg 100.974321ms - 3.28869/sec | time out: 2 events; avg 151.693001ms - 3.28869/sec | failed: 2 events; avg 51.399291ms - 3.28869/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #214 for future & fallible event' TIMED OUT after 151.584971ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #214 for future & fallible event' ended after running for 608.14997ms -- stats: | ok: 2 events; avg 100.973159ms - 3.28866/sec | time out: 2 events; avg 151.686907ms - 3.28866/sec | failed: 2 events; avg 51.40204ms - 3.28866/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #215 for future & fallible event' TIMED OUT after 151.58936ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #215 for future & fallible event' ended after running for 608.155517ms -- stats: | ok: 2 events; avg 100.97193ms - 3.28863/sec | time out: 2 events; avg 151.68786ms - 3.28863/sec | failed: 2 events; avg 51.412076ms - 3.28863/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #216 for future & fallible event' TIMED OUT after 151.594769ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #216 for future & fallible event' ended after running for 608.161631ms -- stats: | ok: 2 events; avg 100.970551ms - 3.28860/sec | time out: 2 events; avg 151.689589ms - 3.28860/sec | failed: 2 events; avg 51.415011ms - 3.28860/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #217 for future & fallible event' TIMED OUT after 151.599593ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #217 for future & fallible event' ended after running for 608.167058ms -- stats: | ok: 2 events; avg 100.969285ms - 3.28857/sec | time out: 2 events; avg 151.691526ms - 3.28857/sec | failed: 2 events; avg 51.417515ms - 3.28857/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #218 for future & fallible event' TIMED OUT after 151.60407ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #218 for future & fallible event' ended after running for 608.172335ms -- stats: | ok: 2 events; avg 100.967817ms - 3.28854/sec | time out: 2 events; avg 151.692912ms - 3.28854/sec | failed: 2 events; avg 51.419713ms - 3.28854/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #219 for future & fallible event' TIMED OUT after 151.608791ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #219 for future & fallible event' ended after running for 608.177365ms -- stats: | ok: 2 events; avg 100.966692ms - 3.28851/sec | time out: 2 events; avg 151.694298ms - 3.28851/sec | failed: 2 events; avg 51.422305ms - 3.28851/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #220 for future & fallible event' TIMED OUT after 151.613479ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #220 for future & fallible event' ended after running for 608.183119ms -- stats: | ok: 2 events; avg 100.965366ms - 3.28848/sec | time out: 2 events; avg 151.695848ms - 3.28848/sec | failed: 2 events; avg 51.424779ms - 3.28848/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #221 for future & fallible event' TIMED OUT after 151.618821ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #221 for future & fallible event' ended after running for 608.188539ms -- stats: | ok: 2 events; avg 100.963861ms - 3.28845/sec | time out: 2 events; avg 151.697576ms - 3.28845/sec | failed: 2 events; avg 51.42729ms - 3.28845/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #222 for future & fallible event' TIMED OUT after 151.623691ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #222 for future & fallible event' ended after running for 608.194116ms -- stats: | ok: 2 events; avg 100.96252ms - 3.28842/sec | time out: 2 events; avg 151.699394ms - 3.28842/sec | failed: 2 events; avg 51.429257ms - 3.28842/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #223 for future & fallible event' TIMED OUT after 151.629182ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #223 for future & fallible event' ended after running for 608.200048ms -- stats: | ok: 2 events; avg 100.946784ms - 3.28839/sec | time out: 2 events; avg 151.701584ms - 3.28839/sec | failed: 2 events; avg 51.431704ms - 3.28839/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #224 for future & fallible event' TIMED OUT after 151.634132ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #224 for future & fallible event' ended after running for 608.205753ms -- stats: | ok: 2 events; avg 100.944206ms - 3.28836/sec | time out: 2 events; avg 151.718259ms - 3.28836/sec | failed: 2 events; avg 51.434278ms - 3.28836/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #225 for future & fallible event' TIMED OUT after 151.639254ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #225 for future & fallible event' ended after running for 608.211279ms -- stats: | ok: 2 events; avg 100.941852ms - 3.28833/sec | time out: 2 events; avg 151.721001ms - 3.28833/sec | failed: 2 events; avg 51.436692ms - 3.28833/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #226 for future & fallible event' TIMED OUT after 151.644012ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #226 for future & fallible event' ended after running for 608.216836ms -- stats: | ok: 2 events; avg 100.939572ms - 3.28830/sec | time out: 2 events; avg 151.72334ms - 3.28830/sec | failed: 2 events; avg 51.439125ms - 3.28830/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #227 for future & fallible event' TIMED OUT after 151.648546ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #227 for future & fallible event' ended after running for 608.221913ms -- stats: | ok: 2 events; avg 100.937381ms - 3.28827/sec | time out: 2 events; avg 151.72559ms - 3.28827/sec | failed: 2 events; avg 51.441513ms - 3.28827/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #228 for future & fallible event' TIMED OUT after 151.653494ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #228 for future & fallible event' ended after running for 608.227434ms -- stats: | ok: 2 events; avg 100.935534ms - 3.28824/sec | time out: 2 events; avg 151.728064ms - 3.28824/sec | failed: 2 events; avg 51.444102ms - 3.28824/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #229 for future & fallible event' TIMED OUT after 151.658471ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #229 for future & fallible event' ended after running for 608.232893ms -- stats: | ok: 2 events; avg 100.933403ms - 3.28821/sec | time out: 2 events; avg 151.730433ms - 3.28821/sec | failed: 2 events; avg 51.446337ms - 3.28821/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #230 for future & fallible event' TIMED OUT after 151.664158ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #230 for future & fallible event' ended after running for 608.239575ms -- stats: | ok: 2 events; avg 100.931875ms - 3.28818/sec | time out: 2 events; avg 151.733145ms - 3.28818/sec | failed: 2 events; avg 51.4488ms - 3.28818/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #231 for future & fallible event' TIMED OUT after 151.668634ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #231 for future & fallible event' ended after running for 608.244877ms -- stats: | ok: 2 events; avg 100.929901ms - 3.28815/sec | time out: 2 events; avg 151.734889ms - 3.28815/sec | failed: 2 events; avg 51.451307ms - 3.28815/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #232 for future & fallible event' TIMED OUT after 151.673386ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #232 for future & fallible event' ended after running for 608.248686ms -- stats: | ok: 2 events; avg 100.927621ms - 3.28813/sec | time out: 2 events; avg 151.736498ms - 3.28813/sec | failed: 2 events; avg 51.454194ms - 3.28813/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #233 for future & fallible event' TIMED OUT after 151.677965ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #233 for future & fallible event' ended after running for 608.253055ms -- stats: | ok: 2 events; avg 100.925356ms - 3.28811/sec | time out: 2 events; avg 151.738048ms - 3.28811/sec | failed: 2 events; avg 51.45663ms - 3.28811/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #234 for future & fallible event' TIMED OUT after 151.682663ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #234 for future & fallible event' ended after running for 608.257115ms -- stats: | ok: 2 events; avg 100.923091ms - 3.28808/sec | time out: 2 events; avg 151.739687ms - 3.28808/sec | failed: 2 events; avg 51.459208ms - 3.28808/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #235 for future & fallible event' TIMED OUT after 151.687656ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #235 for future & fallible event' ended after running for 608.261384ms -- stats: | ok: 2 events; avg 100.920312ms - 3.28806/sec | time out: 2 events; avg 151.741728ms - 3.28806/sec | failed: 2 events; avg 51.461868ms - 3.28806/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #236 for future & fallible event' TIMED OUT after 151.692196ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #236 for future & fallible event' ended after running for 608.264833ms -- stats: | ok: 2 events; avg 100.918077ms - 3.28804/sec | time out: 2 events; avg 151.743621ms - 3.28804/sec | failed: 2 events; avg 51.464453ms - 3.28804/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #237 for future & fallible event' TIMED OUT after 151.69742ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #237 for future & fallible event' ended after running for 608.270444ms -- stats: | ok: 2 events; avg 100.916654ms - 3.28801/sec | time out: 2 events; avg 151.745826ms - 3.28801/sec | failed: 2 events; avg 51.467016ms - 3.28801/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #238 for future & fallible event' TIMED OUT after 151.702161ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #238 for future & fallible event' ended after running for 608.275882ms -- stats: | ok: 2 events; avg 100.915223ms - 3.28798/sec | time out: 2 events; avg 151.747525ms - 3.28798/sec | failed: 2 events; avg 51.469728ms - 3.28798/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #239 for future & fallible event' TIMED OUT after 151.706388ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #239 for future & fallible event' ended after running for 608.281176ms -- stats: | ok: 2 events; avg 100.913383ms - 3.28795/sec | time out: 2 events; avg 151.748821ms - 3.28795/sec | failed: 2 events; avg 51.472262ms - 3.28795/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #240 for future & fallible event' TIMED OUT after 151.711173ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #240 for future & fallible event' ended after running for 608.286451ms -- stats: | ok: 2 events; avg 100.912124ms - 3.28792/sec | time out: 2 events; avg 151.750892ms - 3.28792/sec | failed: 2 events; avg 51.474854ms - 3.28792/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #241 for future & fallible event' TIMED OUT after 151.715913ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #241 for future & fallible event' ended after running for 608.291956ms -- stats: | ok: 2 events; avg 100.910515ms - 3.28789/sec | time out: 2 events; avg 151.752502ms - 3.28789/sec | failed: 2 events; avg 51.477298ms - 3.28789/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #242 for future & fallible event' TIMED OUT after 151.700847ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #242 for future & fallible event' ended after running for 608.297242ms -- stats: | ok: 2 events; avg 100.909166ms - 3.28787/sec | time out: 2 events; avg 151.744336ms - 3.28787/sec | failed: 2 events; avg 51.489532ms - 3.28787/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #243 for future & fallible event' TIMED OUT after 151.705408ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #243 for future & fallible event' ended after running for 608.303557ms -- stats: | ok: 2 events; avg 100.907981ms - 3.28783/sec | time out: 2 events; avg 151.745826ms - 3.28783/sec | failed: 2 events; avg 51.49202ms - 3.28783/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #244 for future & fallible event' TIMED OUT after 151.824752ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #244 for future & fallible event' ended after running for 608.425253ms -- stats: | ok: 2 events; avg 100.905918ms - 3.28717/sec | time out: 2 events; avg 151.804835ms - 3.28717/sec | failed: 2 events; avg 51.494841ms - 3.28717/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #245 for future & fallible event' TIMED OUT after 151.832392ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #245 for future & fallible event' ended after running for 608.432642ms -- stats: | ok: 2 events; avg 100.904405ms - 3.28713/sec | time out: 2 events; avg 151.808411ms - 3.28713/sec | failed: 2 events; avg 51.497802ms - 3.28713/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #246 for future & fallible event' TIMED OUT after 151.837725ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #246 for future & fallible event' ended after running for 608.43816ms -- stats: | ok: 2 events; avg 100.902945ms - 3.28710/sec | time out: 2 events; avg 151.810378ms - 3.28710/sec | failed: 2 events; avg 51.50035ms - 3.28710/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #247 for future & fallible event' TIMED OUT after 151.842586ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #247 for future & fallible event' ended after running for 608.44385ms -- stats: | ok: 2 events; avg 100.901425ms - 3.28707/sec | time out: 2 events; avg 151.812196ms - 3.28707/sec | failed: 2 events; avg 51.502857ms - 3.28707/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #248 for future & fallible event' TIMED OUT after 151.847867ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #248 for future & fallible event' ended after running for 608.449632ms -- stats: | ok: 2 events; avg 100.899778ms - 3.28704/sec | time out: 2 events; avg 151.814193ms - 3.28704/sec | failed: 2 events; avg 51.505245ms - 3.28704/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #249 for future & fallible event' TIMED OUT after 151.851622ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #249 for future & fallible event' ended after running for 608.454941ms -- stats: | ok: 2 events; avg 100.898534ms - 3.28701/sec | time out: 2 events; avg 151.815712ms - 3.28701/sec | failed: 2 events; avg 51.50751ms - 3.28701/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #250 for future & fallible event' TIMED OUT after 151.855861ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #250 for future & fallible event' ended after running for 608.460052ms -- stats: | ok: 2 events; avg 100.896887ms - 3.28699/sec | time out: 2 events; avg 151.816845ms - 3.28699/sec | failed: 2 events; avg 51.510148ms - 3.28699/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #251 for future & fallible event' TIMED OUT after 151.860831ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #251 for future & fallible event' ended after running for 608.466635ms -- stats: | ok: 2 events; avg 100.895718ms - 3.28695/sec | time out: 2 events; avg 151.818544ms - 3.28695/sec | failed: 2 events; avg 51.513433ms - 3.28695/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #252 for future & fallible event' TIMED OUT after 151.864923ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #252 for future & fallible event' ended after running for 608.471911ms -- stats: | ok: 2 events; avg 100.893818ms - 3.28692/sec | time out: 2 events; avg 151.819855ms - 3.28692/sec | failed: 2 events; avg 51.516056ms - 3.28692/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #253 for future & fallible event' TIMED OUT after 151.869689ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #253 for future & fallible event' ended after running for 608.476257ms -- stats: | ok: 2 events; avg 100.892298ms - 3.28690/sec | time out: 2 events; avg 151.821643ms - 3.28690/sec | failed: 2 events; avg 51.519044ms - 3.28690/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #254 for future & fallible event' TIMED OUT after 151.874267ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #254 for future & fallible event' ended after running for 608.481737ms -- stats: | ok: 2 events; avg 100.890845ms - 3.28687/sec | time out: 2 events; avg 151.823208ms - 3.28687/sec | failed: 2 events; avg 51.521495ms - 3.28687/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #255 for future & fallible event' TIMED OUT after 151.879093ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #255 for future & fallible event' ended after running for 608.487132ms -- stats: | ok: 2 events; avg 100.889415ms - 3.28684/sec | time out: 2 events; avg 151.825115ms - 3.28684/sec | failed: 2 events; avg 51.523928ms - 3.28684/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #0 for future & fallible event' TIMED OUT after 151.883679ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #0 for future & fallible event' ended after running for 609.217672ms -- stats: | ok: 2 events; avg 100.888446ms - 3.28290/sec | time out: 2 events; avg 151.826397ms - 3.28290/sec | failed: 2 events; avg 51.526204ms - 3.28290/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #1 for future & fallible event' TIMED OUT after 151.888817ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #1 for future & fallible event' ended after running for 609.21247ms -- stats: | ok: 2 events; avg 100.887403ms - 3.28293/sec | time out: 2 events; avg 151.828468ms - 3.28293/sec | failed: 2 events; avg 51.528685ms - 3.28293/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #2 for future & fallible event' TIMED OUT after 151.92445ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #2 for future & fallible event' ended after running for 609.249098ms -- stats: | ok: 2 events; avg 100.886464ms - 3.28273/sec | time out: 2 events; avg 151.845872ms - 3.28273/sec | failed: 2 events; avg 51.531192ms - 3.28273/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #3 for future & fallible event' TIMED OUT after 151.917108ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #3 for future & fallible event' ended after running for 609.255641ms -- stats: | ok: 2 events; avg 100.885555ms - 3.28269/sec | time out: 2 events; avg 151.841581ms - 3.28269/sec | failed: 2 events; avg 51.533878ms - 3.28269/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #4 for future & fallible event' TIMED OUT after 151.921878ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #4 for future & fallible event' ended after running for 609.262792ms -- stats: | ok: 2 events; avg 100.884274ms - 3.28266/sec | time out: 2 events; avg 151.843399ms - 3.28266/sec | failed: 2 events; avg 51.543623ms - 3.28266/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #5 for future & fallible event' TIMED OUT after 151.927956ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #5 for future & fallible event' ended after running for 609.270522ms -- stats: | ok: 2 events; avg 100.883439ms - 3.28261/sec | time out: 2 events; avg 151.846111ms - 3.28261/sec | failed: 2 events; avg 51.546484ms - 3.28261/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #6 for future & fallible event' TIMED OUT after 151.935344ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #6 for future & fallible event' ended after running for 609.279439ms -- stats: | ok: 2 events; avg 100.882769ms - 3.28257/sec | time out: 2 events; avg 151.849359ms - 3.28257/sec | failed: 2 events; avg 51.548816ms - 3.28257/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #7 for future & fallible event' TIMED OUT after 151.94329ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #7 for future & fallible event' ended after running for 609.288981ms -- stats: | ok: 2 events; avg 100.881621ms - 3.28251/sec | time out: 2 events; avg 151.852667ms - 3.28251/sec | failed: 2 events; avg 51.551118ms - 3.28251/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #8 for future & fallible event' TIMED OUT after 151.951346ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #8 for future & fallible event' ended after running for 609.298032ms -- stats: | ok: 2 events; avg 100.880124ms - 3.28247/sec | time out: 2 events; avg 151.856393ms - 3.28247/sec | failed: 2 events; avg 51.553674ms - 3.28247/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #9 for future & fallible event' TIMED OUT after 151.959811ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #9 for future & fallible event' ended after running for 609.308288ms -- stats: | ok: 2 events; avg 100.87885ms - 3.28241/sec | time out: 2 events; avg 151.860639ms - 3.28241/sec | failed: 2 events; avg 51.555954ms - 3.28241/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #10 for future & fallible event' TIMED OUT after 151.968501ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #10 for future & fallible event' ended after running for 609.318292ms -- stats: | ok: 2 events; avg 100.87835ms - 3.28236/sec | time out: 2 events; avg 151.864856ms - 3.28236/sec | failed: 2 events; avg 51.558614ms - 3.28236/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #11 for future & fallible event' TIMED OUT after 151.976251ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #11 for future & fallible event' ended after running for 609.329382ms -- stats: | ok: 2 events; avg 100.877345ms - 3.28230/sec | time out: 2 events; avg 151.867867ms - 3.28230/sec | failed: 2 events; avg 51.561393ms - 3.28230/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #12 for future & fallible event' TIMED OUT after 151.985852ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #12 for future & fallible event' ended after running for 609.338238ms -- stats: | ok: 2 events; avg 100.875825ms - 3.28225/sec | time out: 2 events; avg 151.87192ms - 3.28225/sec | failed: 2 events; avg 51.564351ms - 3.28225/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #13 for future & fallible event' TIMED OUT after 151.995008ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #13 for future & fallible event' ended after running for 609.348442ms -- stats: | ok: 2 events; avg 100.87505ms - 3.28219/sec | time out: 2 events; avg 151.87633ms - 3.28219/sec | failed: 2 events; avg 51.56716ms - 3.28219/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #14 for future & fallible event' TIMED OUT after 152.004895ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #14 for future & fallible event' ended after running for 609.359279ms -- stats: | ok: 2 events; avg 100.874096ms - 3.28214/sec | time out: 2 events; avg 151.880711ms - 3.28214/sec | failed: 2 events; avg 51.569998ms - 3.28214/sec 2023-03-06T17:54:53.356Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #15 for future & fallible event' TIMED OUT after 152.015098ms 2023-03-06T17:54:53.356Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #15 for future & fallible event' ended after running for 609.370089ms -- stats: | ok: 2 events; avg 100.873485ms - 3.28208/sec | time out: 2 events; avg 151.884854ms - 3.28208/sec | failed: 2 events; avg 51.57242ms - 3.28208/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #16 for future & fallible event' TIMED OUT after 152.152182ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #16 for future & fallible event' ended after running for 609.509691ms -- stats: | ok: 2 events; avg 100.872889ms - 3.28133/sec | time out: 2 events; avg 151.952565ms - 3.28133/sec | failed: 2 events; avg 51.574975ms - 3.28133/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #17 for future & fallible event' TIMED OUT after 152.165195ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #17 for future & fallible event' ended after running for 609.521062ms -- stats: | ok: 2 events; avg 100.871325ms - 3.28126/sec | time out: 2 events; avg 151.95784ms - 3.28126/sec | failed: 2 events; avg 51.577419ms - 3.28126/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #18 for future & fallible event' TIMED OUT after 152.175302ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #18 for future & fallible event' ended after running for 609.530991ms -- stats: | ok: 2 events; avg 100.869901ms - 3.28121/sec | time out: 2 events; avg 151.962936ms - 3.28121/sec | failed: 2 events; avg 51.580325ms - 3.28121/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #19 for future & fallible event' TIMED OUT after 152.185309ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #19 for future & fallible event' ended after running for 609.541831ms -- stats: | ok: 2 events; avg 100.868329ms - 3.28115/sec | time out: 2 events; avg 151.967913ms - 3.28115/sec | failed: 2 events; avg 51.582783ms - 3.28115/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #20 for future & fallible event' TIMED OUT after 152.194785ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #20 for future & fallible event' ended after running for 609.552089ms -- stats: | ok: 2 events; avg 100.86745ms - 3.28110/sec | time out: 2 events; avg 151.972651ms - 3.28110/sec | failed: 2 events; avg 51.584899ms - 3.28110/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #21 for future & fallible event' TIMED OUT after 152.204016ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #21 for future & fallible event' ended after running for 609.563284ms -- stats: | ok: 2 events; avg 100.866824ms - 3.28104/sec | time out: 2 events; avg 151.97663ms - 3.28104/sec | failed: 2 events; avg 51.587567ms - 3.28104/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #22 for future & fallible event' TIMED OUT after 152.213699ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #22 for future & fallible event' ended after running for 609.574431ms -- stats: | ok: 2 events; avg 100.866169ms - 3.28098/sec | time out: 2 events; avg 151.980862ms - 3.28098/sec | failed: 2 events; avg 51.590204ms - 3.28098/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #23 for future & fallible event' TIMED OUT after 152.225373ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #23 for future & fallible event' ended after running for 609.586322ms -- stats: | ok: 2 events; avg 100.865513ms - 3.28091/sec | time out: 2 events; avg 151.985854ms - 3.28091/sec | failed: 2 events; avg 51.592849ms - 3.28091/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #24 for future & fallible event' TIMED OUT after 152.234985ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #24 for future & fallible event' ended after running for 609.596719ms -- stats: | ok: 2 events; avg 100.864507ms - 3.28086/sec | time out: 2 events; avg 151.989624ms - 3.28086/sec | failed: 2 events; avg 51.589571ms - 3.28086/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #25 for future & fallible event' TIMED OUT after 152.245433ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #25 for future & fallible event' ended after running for 609.60716ms -- stats: | ok: 2 events; avg 100.869894ms - 3.28080/sec | time out: 2 events; avg 151.994258ms - 3.28080/sec | failed: 2 events; avg 51.591918ms - 3.28080/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #26 for future & fallible event' TIMED OUT after 152.254592ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #26 for future & fallible event' ended after running for 609.61703ms -- stats: | ok: 2 events; avg 100.869432ms - 3.28075/sec | time out: 2 events; avg 151.997864ms - 3.28075/sec | failed: 2 events; avg 51.59428ms - 3.28075/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #27 for future & fallible event' TIMED OUT after 152.264641ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #27 for future & fallible event' ended after running for 609.627709ms -- stats: | ok: 2 events; avg 100.869209ms - 3.28069/sec | time out: 2 events; avg 152.001992ms - 3.28069/sec | failed: 2 events; avg 51.596574ms - 3.28069/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #28 for future & fallible event' TIMED OUT after 152.274699ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #28 for future & fallible event' ended after running for 609.638636ms -- stats: | ok: 2 events; avg 100.868344ms - 3.28063/sec | time out: 2 events; avg 152.006358ms - 3.28063/sec | failed: 2 events; avg 51.598944ms - 3.28063/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #29 for future & fallible event' TIMED OUT after 152.283325ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #29 for future & fallible event' ended after running for 609.649458ms -- stats: | ok: 2 events; avg 100.867942ms - 3.28057/sec | time out: 2 events; avg 152.009696ms - 3.28057/sec | failed: 2 events; avg 51.601395ms - 3.28057/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #30 for future & fallible event' TIMED OUT after 152.57201ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #30 for future & fallible event' ended after running for 609.941109ms -- stats: | ok: 2 events; avg 100.860357ms - 3.27901/sec | time out: 2 events; avg 152.152687ms - 3.27901/sec | failed: 2 events; avg 51.604412ms - 3.27901/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #31 for future & fallible event' TIMED OUT after 152.558867ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #31 for future & fallible event' ended after running for 609.95154ms -- stats: | ok: 2 events; avg 100.859769ms - 3.27895/sec | time out: 2 events; avg 152.15224ms - 3.27895/sec | failed: 2 events; avg 51.607296ms - 3.27895/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #32 for future & fallible event' TIMED OUT after 152.565761ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #32 for future & fallible event' ended after running for 609.960996ms -- stats: | ok: 2 events; avg 100.859039ms - 3.27890/sec | time out: 2 events; avg 152.154654ms - 3.27890/sec | failed: 2 events; avg 51.622856ms - 3.27890/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #33 for future & fallible event' TIMED OUT after 152.574251ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #33 for future & fallible event' ended after running for 609.970698ms -- stats: | ok: 2 events; avg 100.858614ms - 3.27885/sec | time out: 2 events; avg 152.157992ms - 3.27885/sec | failed: 2 events; avg 51.626962ms - 3.27885/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #34 for future & fallible event' TIMED OUT after 152.583594ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #34 for future & fallible event' ended after running for 609.980634ms -- stats: | ok: 2 events; avg 100.857951ms - 3.27879/sec | time out: 2 events; avg 152.161598ms - 3.27879/sec | failed: 2 events; avg 51.629547ms - 3.27879/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #35 for future & fallible event' TIMED OUT after 152.593269ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #35 for future & fallible event' ended after running for 609.990535ms -- stats: | ok: 2 events; avg 100.857601ms - 3.27874/sec | time out: 2 events; avg 152.165502ms - 3.27874/sec | failed: 2 events; avg 51.632233ms - 3.27874/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #36 for future & fallible event' TIMED OUT after 152.60296ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #36 for future & fallible event' ended after running for 609.99924ms -- stats: | ok: 2 events; avg 100.8569ms - 3.27869/sec | time out: 2 events; avg 152.169093ms - 3.27869/sec | failed: 2 events; avg 51.634852ms - 3.27869/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #37 for future & fallible event' TIMED OUT after 152.613053ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #37 for future & fallible event' ended after running for 610.011219ms -- stats: | ok: 2 events; avg 100.856319ms - 3.27863/sec | time out: 2 events; avg 152.173281ms - 3.27863/sec | failed: 2 events; avg 51.637825ms - 3.27863/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #38 for future & fallible event' TIMED OUT after 152.623098ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #38 for future & fallible event' ended after running for 610.021054ms -- stats: | ok: 2 events; avg 100.855544ms - 3.27858/sec | time out: 2 events; avg 152.177513ms - 3.27858/sec | failed: 2 events; avg 51.640168ms - 3.27858/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #39 for future & fallible event' TIMED OUT after 152.631923ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #39 for future & fallible event' ended after running for 610.029886ms -- stats: | ok: 2 events; avg 100.855082ms - 3.27853/sec | time out: 2 events; avg 152.180851ms - 3.27853/sec | failed: 2 events; avg 51.642329ms - 3.27853/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #40 for future & fallible event' TIMED OUT after 152.641294ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #40 for future & fallible event' ended after running for 610.039997ms -- stats: | ok: 2 events; avg 100.854337ms - 3.27847/sec | time out: 2 events; avg 152.184635ms - 3.27847/sec | failed: 2 events; avg 51.645629ms - 3.27847/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #41 for future & fallible event' TIMED OUT after 152.649829ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #41 for future & fallible event' ended after running for 610.049642ms -- stats: | ok: 2 events; avg 100.853756ms - 3.27842/sec | time out: 2 events; avg 152.188092ms - 3.27842/sec | failed: 2 events; avg 51.648282ms - 3.27842/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #42 for future & fallible event' TIMED OUT after 152.658483ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #42 for future & fallible event' ended after running for 610.059221ms -- stats: | ok: 2 events; avg 100.853212ms - 3.27837/sec | time out: 2 events; avg 152.19143ms - 3.27837/sec | failed: 2 events; avg 51.651232ms - 3.27837/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #43 for future & fallible event' TIMED OUT after 152.667328ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #43 for future & fallible event' ended after running for 610.06901ms -- stats: | ok: 2 events; avg 100.852676ms - 3.27832/sec | time out: 2 events; avg 152.194843ms - 3.27832/sec | failed: 2 events; avg 51.653847ms - 3.27832/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #44 for future & fallible event' TIMED OUT after 152.67691ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #44 for future & fallible event' ended after running for 610.080461ms -- stats: | ok: 2 events; avg 100.85196ms - 3.27826/sec | time out: 2 events; avg 152.198881ms - 3.27826/sec | failed: 2 events; avg 51.65635ms - 3.27826/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #45 for future & fallible event' TIMED OUT after 152.687174ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #45 for future & fallible event' ended after running for 610.090408ms -- stats: | ok: 2 events; avg 100.851431ms - 3.27820/sec | time out: 2 events; avg 152.203113ms - 3.27820/sec | failed: 2 events; avg 51.658787ms - 3.27820/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #46 for future & fallible event' TIMED OUT after 152.696013ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #46 for future & fallible event' ended after running for 610.100554ms -- stats: | ok: 2 events; avg 100.850664ms - 3.27815/sec | time out: 2 events; avg 152.20654ms - 3.27815/sec | failed: 2 events; avg 51.661171ms - 3.27815/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #47 for future & fallible event' TIMED OUT after 152.705484ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #47 for future & fallible event' ended after running for 610.110636ms -- stats: | ok: 2 events; avg 100.850627ms - 3.27809/sec | time out: 2 events; avg 152.210444ms - 3.27809/sec | failed: 2 events; avg 51.663294ms - 3.27809/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #48 for future & fallible event' TIMED OUT after 152.714797ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #48 for future & fallible event' ended after running for 610.12115ms -- stats: | ok: 2 events; avg 100.849904ms - 3.27804/sec | time out: 2 events; avg 152.213752ms - 3.27804/sec | failed: 2 events; avg 51.665884ms - 3.27804/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #49 for future & fallible event' TIMED OUT after 152.724576ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #49 for future & fallible event' ended after running for 610.132978ms -- stats: | ok: 2 events; avg 100.849286ms - 3.27797/sec | time out: 2 events; avg 152.217686ms - 3.27797/sec | failed: 2 events; avg 51.669233ms - 3.27797/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #50 for future & fallible event' TIMED OUT after 152.734373ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #50 for future & fallible event' ended after running for 610.170879ms -- stats: | ok: 2 events; avg 100.848719ms - 3.27777/sec | time out: 2 events; avg 152.221546ms - 3.27777/sec | failed: 2 events; avg 51.671937ms - 3.27777/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #51 for future & fallible event' TIMED OUT after 152.771814ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #51 for future & fallible event' ended after running for 610.181868ms -- stats: | ok: 2 events; avg 100.847892ms - 3.27771/sec | time out: 2 events; avg 152.239412ms - 3.27771/sec | failed: 2 events; avg 51.674366ms - 3.27771/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #52 for future & fallible event' TIMED OUT after 152.781817ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #52 for future & fallible event' ended after running for 610.1932ms -- stats: | ok: 2 events; avg 100.847475ms - 3.27765/sec | time out: 2 events; avg 152.243465ms - 3.27765/sec | failed: 2 events; avg 51.676475ms - 3.27765/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #53 for future & fallible event' TIMED OUT after 152.816073ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #53 for future & fallible event' ended after running for 610.227587ms -- stats: | ok: 2 events; avg 100.846954ms - 3.27747/sec | time out: 2 events; avg 152.259618ms - 3.27747/sec | failed: 2 events; avg 51.679209ms - 3.27747/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #54 for future & fallible event' TIMED OUT after 152.825699ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #54 for future & fallible event' ended after running for 610.236785ms -- stats: | ok: 2 events; avg 100.84638ms - 3.27742/sec | time out: 2 events; avg 152.263671ms - 3.27742/sec | failed: 2 events; avg 51.68169ms - 3.27742/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #55 for future & fallible event' TIMED OUT after 152.835741ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #55 for future & fallible event' ended after running for 610.247468ms -- stats: | ok: 2 events; avg 100.845769ms - 3.27736/sec | time out: 2 events; avg 152.267724ms - 3.27736/sec | failed: 2 events; avg 51.684ms - 3.27736/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #56 for future & fallible event' TIMED OUT after 152.845767ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #56 for future & fallible event' ended after running for 610.257605ms -- stats: | ok: 2 events; avg 100.845255ms - 3.27730/sec | time out: 2 events; avg 152.271748ms - 3.27730/sec | failed: 2 events; avg 51.686622ms - 3.27730/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #57 for future & fallible event' TIMED OUT after 152.841361ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #57 for future & fallible event' ended after running for 610.266456ms -- stats: | ok: 2 events; avg 100.844145ms - 3.27726/sec | time out: 2 events; avg 152.268797ms - 3.27726/sec | failed: 2 events; avg 51.688999ms - 3.27726/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #58 for future & fallible event' TIMED OUT after 152.85101ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #58 for future & fallible event' ended after running for 610.277129ms -- stats: | ok: 2 events; avg 100.832835ms - 3.27720/sec | time out: 2 events; avg 152.273312ms - 3.27720/sec | failed: 2 events; avg 51.698446ms - 3.27720/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #59 for future & fallible event' TIMED OUT after 152.861117ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #59 for future & fallible event' ended after running for 610.287211ms -- stats: | ok: 2 events; avg 100.832328ms - 3.27715/sec | time out: 2 events; avg 152.288228ms - 3.27715/sec | failed: 2 events; avg 51.701024ms - 3.27715/sec 2023-03-06T17:54:53.357Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #60 for future & fallible event' TIMED OUT after 152.870453ms 2023-03-06T17:54:53.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #60 for future & fallible event' ended after running for 610.29662ms -- stats: | ok: 2 events; avg 100.8313ms - 3.27709/sec | time out: 2 events; avg 152.291983ms - 3.27709/sec | failed: 2 events; avg 51.703561ms - 3.27709/sec ok <0.621s> test multi::tests::undegradable_latencies ... 2023-03-06T17:54:53.361Z 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): 7.737µs 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #0)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #1)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #2)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #3)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #4)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #5)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #6)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #7)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #8)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #9)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #10)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #11)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #12)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #13)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #14)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #15)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #16)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #17)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #18)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #19)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #20)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #21)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #22)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #23)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #24)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #25)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #26)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #27)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #28)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #29)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #30)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #31)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #32)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #33)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #34)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #35)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #36)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #37)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #38)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #39)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #40)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #41)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #42)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #43)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #44)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #45)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #46)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #47)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #48)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #49)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #50)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #51)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #52)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #53)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #54)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #55)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #56)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #57)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #58)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #59)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #60)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #61)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #62)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #63)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #64)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #65)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #66)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #67)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #68)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #69)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #70)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #71)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #72)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #73)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #74)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #75)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #76)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #77)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #78)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #79)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #80)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #81)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #82)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #83)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #84)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #85)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #86)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #87)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #88)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #89)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #90)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #91)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #92)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #93)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #94)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #95)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #96)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #97)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #98)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #99)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #100)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #101)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #102)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #103)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #104)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #105)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #106)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #107)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #108)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #109)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #110)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #111)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #112)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #113)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #114)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #115)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #116)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #117)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #118)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #119)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #120)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #121)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #122)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #123)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #124)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #125)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #126)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #127)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #128)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #129)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #130)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #131)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #132)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #133)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.361Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #134)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #135)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #136)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #137)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #138)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #139)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #140)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #141)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #142)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #143)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #144)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #145)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #146)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #147)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #148)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #149)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #150)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #151)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #152)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #153)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #154)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #155)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #156)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #157)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #158)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #159)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #160)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #161)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #162)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #163)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #164)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #165)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #166)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #167)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #168)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #169)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #170)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #171)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #172)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #173)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #174)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #175)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #176)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #177)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #178)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #179)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #180)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #181)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #182)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #183)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #184)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #185)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #186)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #187)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #188)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #189)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #190)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #191)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #192)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #193)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #194)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #195)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #196)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #197)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #198)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #199)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #200)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #201)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #202)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #203)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #204)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #205)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #206)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #207)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #208)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #209)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #210)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #211)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #212)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #213)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #214)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #215)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #216)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #217)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #218)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #219)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #220)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #221)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #222)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #223)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #224)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #225)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #226)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #227)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #228)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #229)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #230)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #231)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #232)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #233)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #234)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #235)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #236)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #237)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #238)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #239)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #240)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #241)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #242)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #243)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #244)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #245)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #246)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #247)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #248)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #249)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #250)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #251)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #252)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #253)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #254)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T17:54:53.362Z 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: 268.353µs 3. Time to produce & consume another SIMPLE event (with lots of -- 256 -- sleeping Multi Tokio tasks): 528ns 2023-03-06T17:54:53.362Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIMPLE: solo pipeline' ended after running for 553.488µs -- stats: | ok: 2 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #0)' ended after running for 4.562264ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #1)' ended after running for 4.565946ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #2)' ended after running for 4.566769ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #3)' ended after running for 4.567258ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #4)' ended after running for 4.568005ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #5)' ended after running for 4.588389ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #6)' ended after running for 4.589014ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #7)' ended after running for 4.589608ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #8)' ended after running for 4.590154ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #9)' ended after running for 4.590622ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #10)' ended after running for 4.591231ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #11)' ended after running for 4.591904ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #12)' ended after running for 4.592471ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #13)' ended after running for 4.59314ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #14)' ended after running for 4.593902ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #15)' ended after running for 4.594478ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #16)' ended after running for 4.595169ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #17)' ended after running for 4.595845ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #18)' ended after running for 4.596439ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #19)' ended after running for 4.597052ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #20)' ended after running for 4.59729ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #21)' ended after running for 4.597871ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #22)' ended after running for 4.598528ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #23)' ended after running for 4.599167ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #24)' ended after running for 4.59973ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #25)' ended after running for 4.600281ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #26)' ended after running for 4.60106ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #27)' ended after running for 4.601718ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #28)' ended after running for 4.602012ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #29)' ended after running for 4.602599ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #30)' ended after running for 4.603212ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #31)' ended after running for 4.603705ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #32)' ended after running for 4.604314ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #33)' ended after running for 4.604971ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #34)' ended after running for 4.605724ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #35)' ended after running for 4.606372ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #36)' ended after running for 4.606998ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #37)' ended after running for 4.607852ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #38)' ended after running for 4.608457ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #39)' ended after running for 4.608989ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #40)' ended after running for 4.609639ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #41)' ended after running for 4.610249ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #42)' ended after running for 4.610866ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #43)' ended after running for 4.61147ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #44)' ended after running for 4.612165ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #45)' ended after running for 4.612886ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #46)' ended after running for 4.613598ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #47)' ended after running for 4.614207ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #48)' ended after running for 4.614789ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #49)' ended after running for 4.615629ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #50)' ended after running for 4.616326ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #51)' ended after running for 4.617017ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #52)' ended after running for 4.617564ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #53)' ended after running for 4.618186ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #54)' ended after running for 4.618827ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #55)' ended after running for 4.619365ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #56)' ended after running for 4.619971ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #57)' ended after running for 4.620155ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #58)' ended after running for 4.620733ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #59)' ended after running for 4.621413ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #60)' ended after running for 4.621884ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #61)' ended after running for 4.53596ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #62)' ended after running for 4.535476ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #63)' ended after running for 4.535446ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #64)' ended after running for 4.53605ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #65)' ended after running for 4.536561ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #66)' ended after running for 4.536977ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #67)' ended after running for 4.537571ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #68)' ended after running for 4.538096ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #69)' ended after running for 4.538637ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #70)' ended after running for 4.539246ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #71)' ended after running for 4.539466ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #72)' ended after running for 4.54005ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #73)' ended after running for 4.540637ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #74)' ended after running for 4.541121ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #75)' ended after running for 4.541722ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #76)' ended after running for 4.542264ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #77)' ended after running for 4.535893ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #78)' ended after running for 4.535355ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #79)' ended after running for 4.535129ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #80)' ended after running for 4.535076ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #81)' ended after running for 4.533945ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #82)' ended after running for 4.534345ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #83)' ended after running for 4.534846ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #84)' ended after running for 4.535471ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #85)' ended after running for 4.536005ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #86)' ended after running for 4.536531ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #87)' ended after running for 4.537109ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #88)' ended after running for 4.53774ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #89)' ended after running for 4.538327ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #90)' ended after running for 4.538867ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #91)' ended after running for 4.539492ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #92)' ended after running for 4.540153ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #93)' ended after running for 4.540792ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #94)' ended after running for 4.54134ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #95)' ended after running for 4.542219ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #96)' ended after running for 4.542818ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #97)' ended after running for 4.54308ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #98)' ended after running for 4.543753ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #99)' ended after running for 4.544344ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #100)' ended after running for 4.54475ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #101)' ended after running for 4.545442ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #102)' ended after running for 4.546145ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #103)' ended after running for 4.546802ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #104)' ended after running for 4.547366ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #105)' ended after running for 4.548052ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #106)' ended after running for 4.54863ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #107)' ended after running for 4.549234ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #108)' ended after running for 4.549801ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #109)' ended after running for 4.550249ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #110)' ended after running for 4.550917ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #111)' ended after running for 4.551525ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #112)' ended after running for 4.552095ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #113)' ended after running for 4.552752ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #114)' ended after running for 4.553385ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #115)' ended after running for 4.554171ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #116)' ended after running for 4.55482ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #117)' ended after running for 4.555329ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #118)' ended after running for 4.555925ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #119)' ended after running for 4.556538ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #120)' ended after running for 4.557132ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #121)' ended after running for 4.557664ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #122)' ended after running for 4.557531ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #123)' ended after running for 4.55809ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #124)' ended after running for 4.558689ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #125)' ended after running for 4.559335ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #126)' ended after running for 4.559883ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #127)' ended after running for 4.560493ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #128)' ended after running for 4.561097ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #129)' ended after running for 4.561617ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #130)' ended after running for 4.562261ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #131)' ended after running for 4.562891ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #132)' ended after running for 4.56366ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #133)' ended after running for 4.564029ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #134)' ended after running for 4.564684ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #135)' ended after running for 4.565481ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #136)' ended after running for 4.566006ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #137)' ended after running for 4.56665ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #138)' ended after running for 4.567266ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #139)' ended after running for 4.567825ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #140)' ended after running for 4.568369ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #141)' ended after running for 4.569019ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #142)' ended after running for 4.569648ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #143)' ended after running for 4.570293ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #144)' ended after running for 4.57087ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #145)' ended after running for 4.571489ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #146)' ended after running for 4.572113ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #147)' ended after running for 4.572706ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #148)' ended after running for 4.573249ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #149)' ended after running for 4.573914ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #150)' ended after running for 4.57457ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #151)' ended after running for 4.575123ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #152)' ended after running for 4.575784ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #153)' ended after running for 4.576356ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #154)' ended after running for 4.577055ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #155)' ended after running for 4.577647ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #156)' ended after running for 4.578268ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #157)' ended after running for 4.578719ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #158)' ended after running for 4.57929ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #159)' ended after running for 4.579947ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #160)' ended after running for 4.580588ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #161)' ended after running for 4.581185ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #162)' ended after running for 4.58183ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #163)' ended after running for 4.582434ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #164)' ended after running for 4.583072ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #165)' ended after running for 4.583652ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #166)' ended after running for 4.584218ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #167)' ended after running for 4.584877ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #168)' ended after running for 4.585504ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #169)' ended after running for 4.586259ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #170)' ended after running for 4.586891ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #171)' ended after running for 4.587522ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #172)' ended after running for 4.58823ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #173)' ended after running for 4.588886ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #174)' ended after running for 4.58952ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #175)' ended after running for 4.590061ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #176)' ended after running for 4.590654ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #177)' ended after running for 4.591192ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #178)' ended after running for 4.591709ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #179)' ended after running for 4.592335ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #180)' ended after running for 4.592897ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #181)' ended after running for 4.593527ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #182)' ended after running for 4.594109ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #183)' ended after running for 4.594286ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #184)' ended after running for 4.595027ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #185)' ended after running for 4.595592ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #186)' ended after running for 4.59624ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #187)' ended after running for 4.596992ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #188)' ended after running for 4.597641ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #189)' ended after running for 4.598175ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #190)' ended after running for 4.598865ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #191)' ended after running for 4.599564ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #192)' ended after running for 4.60025ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #193)' ended after running for 4.600947ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #194)' ended after running for 4.601573ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #195)' ended after running for 4.602261ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #196)' ended after running for 4.602973ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #197)' ended after running for 4.60353ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #198)' ended after running for 4.60417ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #199)' ended after running for 4.604847ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #200)' ended after running for 4.605214ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #201)' ended after running for 4.605881ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #202)' ended after running for 4.606525ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #203)' ended after running for 4.607251ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #204)' ended after running for 4.607874ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #205)' ended after running for 4.608396ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #206)' ended after running for 4.609087ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #207)' ended after running for 4.609746ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #208)' ended after running for 4.610371ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #209)' ended after running for 4.610968ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #210)' ended after running for 4.611569ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #211)' ended after running for 4.6122ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #212)' ended after running for 4.612849ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #213)' ended after running for 4.613439ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #214)' ended after running for 4.614094ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #215)' ended after running for 4.614707ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #216)' ended after running for 4.615323ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #217)' ended after running for 4.615938ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #218)' ended after running for 4.616541ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #219)' ended after running for 4.617126ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #220)' ended after running for 4.617723ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #221)' ended after running for 4.61836ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #222)' ended after running for 4.618972ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #223)' ended after running for 4.61958ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #224)' ended after running for 4.62018ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #225)' ended after running for 4.620787ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #226)' ended after running for 4.621335ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #227)' ended after running for 4.621081ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #228)' ended after running for 4.621637ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #229)' ended after running for 4.622204ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #230)' ended after running for 4.622805ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #231)' ended after running for 4.624478ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #232)' ended after running for 4.625155ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #233)' ended after running for 4.625775ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #234)' ended after running for 4.626377ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #235)' ended after running for 4.626966ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #236)' ended after running for 4.627635ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #237)' ended after running for 4.628215ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #238)' ended after running for 4.628811ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #239)' ended after running for 4.62939ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #240)' ended after running for 4.630007ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #241)' ended after running for 4.630605ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #242)' ended after running for 4.631197ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #243)' ended after running for 4.631802ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #244)' ended after running for 4.632198ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #245)' ended after running for 4.631525ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #246)' ended after running for 4.632129ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #247)' ended after running for 4.632759ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #248)' ended after running for 4.633389ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #249)' ended after running for 4.634023ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #250)' ended after running for 4.634649ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #251)' ended after running for 4.635267ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #252)' ended after running for 4.635874ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #253)' ended after running for 4.636499ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #254)' ended after running for 4.63714ms -- stats: | ok: 1 events 2023-03-06T17:54:53.366Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #255)' ended after running for 4.637776ms -- stats: | ok: 1 events ok <0.009s> 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::container_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::container_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 <6.960s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <17.042s> 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, 1196 reported stack was full CONSUMPTION: 4096000 successful, 25 reported stack was empty ok <26.011s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::single_producer_multiple_consumers ... Production already stopped but we are no longer consuming anything. So far, 4057600; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057600; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057603; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057600; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057699; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4058087; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4058344; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4058379; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4058394; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4058415; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4058453; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4059228; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4059726; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4071575; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072215; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072224; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057929; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072307; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072309; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072361; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072728; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4079138; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4084025; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072225; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4084881; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4091087; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072216; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072227; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072224; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4058425; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4084826; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4084826; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072224; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4084827; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072226; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057975; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4084859; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4084871; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4084875; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4084896; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072227; wanted: 4096000 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 0 reports of 'full container' CONSUMPTIONS: 4096000 successful, 2700 reports of 'empty container' ok <59.755s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::test_blocking ... Asserting pass 'virgin' Blocking on empty (from a virgin container): 100.120855ms Blocking on empty (again): 100.130693ms Non-Blocking 'try_consume()': 551ns Waiting to dequeue: 50.201646ms Blocking 'produce()' (won't block as there are free slots): 504ns Blocking on full: 100.060074ms Blocking on full (again): 100.059661ms Non-Blocking 'try_produce()': 270ns Waiting to 'produce()': 50.203977ms Blocking 'consume()' (won't block as there are elements): 170ns Asserting pass 'non-virgin' Blocking on empty (from a non-virgin container): 100.077168ms Blocking on empty (again): 100.06631ms Non-Blocking 'try_consume()': 181ns Waiting to dequeue: 50.247335ms Blocking 'produce()' (won't block as there are free slots): 371ns Blocking on full: 100.093036ms Blocking on full (again): 100.068235ms Non-Blocking 'try_produce()': 243ns Waiting to 'produce()': 50.272763ms Blocking 'consume()' (won't block as there are elements): 170ns Asserting pass 'promiscuous' Blocking on empty (from a promiscuous container): 100.360577ms Blocking on empty (again): 100.290817ms Non-Blocking 'try_consume()': 173ns Waiting to dequeue: 50.236114ms Blocking 'produce()' (won't block as there are free slots): 373ns Blocking on full: 100.098036ms Blocking on full (again): 100.105644ms Non-Blocking 'try_produce()': 248ns Waiting to 'produce()': 50.308518ms Blocking 'consume()' (won't block as there are elements): 177ns ok <1.503s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::basic_queue_use_cases ... ok <0.161s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <10.200s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.688s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_single_consumer ... Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 290024, enqueuer_tail: 346682, dequeuer_tail: 346682 CONTENTS: 56658 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 346682 successful, 231 reported queue was full CONSUMPTION: 290024 successful, 387063 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 414549, enqueuer_tail: 414549, dequeuer_tail: 414549 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 414549 successful, 278 reported queue was full CONSUMPTION: 414549 successful, 1218624 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 849977, enqueuer_tail: 886575, dequeuer_tail: 886575 CONTENTS: 36598 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 886575 successful, 553 reported queue was full CONSUMPTION: 849977 successful, 1334895 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 1004868, enqueuer_tail: 1004868, dequeuer_tail: 1004868 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 1004868 successful, 647 reported queue was full CONSUMPTION: 1004868 successful, 2085617 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 1075118, enqueuer_tail: 1089287, dequeuer_tail: 1079262 CONTENTS: 14169 elements, 65536 buffer -- concurrent_enqueuers: 9 PRODUCTION: 1089282 successful, 694 reported queue was full CONSUMPTION: 1075118 successful, 2954906 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 1075118, enqueuer_tail: 1089287, dequeuer_tail: 1079262 CONTENTS: 14169 elements, 65536 buffer -- concurrent_enqueuers: 9 PRODUCTION: 1089282 successful, 694 reported queue was full CONSUMPTION: 1075118 successful, 2954906 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 1566807, enqueuer_tail: 1621272, dequeuer_tail: 1621272 CONTENTS: 54465 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 1621272 successful, 1015 reported queue was full CONSUMPTION: 1566807 successful, 2954906 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2075798, enqueuer_tail: 2135960, dequeuer_tail: 2135959 CONTENTS: 60162 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 2135960 successful, 1336 reported queue was full CONSUMPTION: 2075798 successful, 2954906 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2075798, enqueuer_tail: 2135960, dequeuer_tail: 2135959 CONTENTS: 60162 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 2135960 successful, 1336 reported queue was full CONSUMPTION: 2075798 successful, 2954906 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2611158, enqueuer_tail: 2624279, dequeuer_tail: 2624278 CONTENTS: 13121 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 2624279 successful, 1657 reported queue was full CONSUMPTION: 2611158 successful, 2954906 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 3099185, enqueuer_tail: 3159931, dequeuer_tail: 3159930 CONTENTS: 60746 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 3159931 successful, 1979 reported queue was full CONSUMPTION: 3099184 successful, 2954906 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 3611060, enqueuer_tail: 3671735, dequeuer_tail: 3671734 CONTENTS: 60675 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 3671735 successful, 2299 reported queue was full CONSUMPTION: 3611060 successful, 2954906 reported queue was empty STATE: head: 3611060, enqueuer_tail: 3671735, dequeuer_tail: 3671734 CONTENTS: 60675 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 3671735 successful, 2299 reported queue was full CONSUMPTION: 3611060 successful, 2954906 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 4049844, enqueuer_tail: 4049844, dequeuer_tail: 4049844 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 4049844 successful, 2621 reported queue was full CONSUMPTION: 4049844 successful, 3161691 reported queue was empty Producing already stopped but we are no longer consuming anything. So far, 4062234; wanted: 4096000 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 2621 reported stack was full CONSUMPTION: 4096000 successful, 3506593 reported stack was empty ok <0.896s> 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, 580208535 reports of 'empty container' ok <15.186s> 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.956s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.222s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_single_consumer ... Producing already stopped but we are no longer consuming anything. So far, 4095991; wanted: 4096000 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 1694 reported stack was full CONSUMPTION: 4096000 successful, 7 reported stack was empty ok <36.725s> test ogre_std::ogre_queues::blocking_queue::tests::single_producer_multiple_consumers ... Production already stopped but we are no longer consuming anything. So far, 4096001; wanted: 4096000 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 8 reports of 'full container' CONSUMPTIONS: 4096000 successful, 414 reports of 'empty container' ok <9.229s> test ogre_std::ogre_queues::blocking_queue::tests::test_blocking ... Asserting pass 'virgin' Blocking on empty (from a virgin queue): 100.192194ms Blocking on empty (again): 100.0867ms Non-Blocking 'try_dequeue()': 180ns Blocking enqueueing (won't block as there are free slots): 227ns Blocking on full: 100.057899ms Blocking on full (again): 100.095526ms Non-Blocking 'try_enqueue()': 177ns Blocking dequeueing (won't block as there are elements): 226ns Asserting pass 'non-virgin' Blocking on empty (from a non-virgin queue): 100.257099ms Blocking on empty (again): 100.254816ms Non-Blocking 'try_dequeue()': 420ns Blocking enqueueing (won't block as there are free slots): 232ns Blocking on full: 100.036495ms Blocking on full (again): 100.152761ms Non-Blocking 'try_enqueue()': 183ns Blocking dequeueing (won't block as there are elements): 226ns Asserting pass 'promiscuous' Blocking on empty (from a promiscuous queue): 100.062951ms Blocking on empty (again): 100.110758ms Non-Blocking 'try_dequeue()': 175ns Blocking enqueueing (won't block as there are free slots): 237ns Blocking on full: 100.096757ms Blocking on full (again): 100.13897ms Non-Blocking 'try_enqueue()': 568ns Blocking dequeueing (won't block as there are elements): 1.221µs 'interrupt()' causing blocking operations to return immediately: 1.455µs ok <1.202s> 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 <13.864s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <4.132s> 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, 183740468 reported stack was full CONSUMPTION: 4096000 successful, 865 reported stack was empty ok <125.608s> 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, 202909315 reports of 'empty container' ok <156.949s> 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.773s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.333s> 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, 185181351 reported stack was full CONSUMPTION: 4096000 successful, 1061 reported stack was empty ok <56.974s> 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, 173613590 reports of 'empty container' ok <55.160s> 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.950s> test ogre_std::ogre_stacks::blocking_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.436s> 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 <60.565s> 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 <63.203s> 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 <23.057s> test ogre_std::ogre_stacks::non_blocking_atomic_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <6.979s> 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, 194516109 reported stack was full CONSUMPTION: 4096000 successful, 345 reported stack was empty ok <148.012s> 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, 201970494 reports of 'empty container' ok <154.702s> 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.514s> test ogre_std::ogre_stacks::non_blocking_parking_lot_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.234s> 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, 189822669 reported stack was full CONSUMPTION: 4096000 successful, 704 reported stack was empty ok <56.429s> 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, 175493118 reports of 'empty container' ok <53.213s> test ogre_std::reference_counted_buffer_allocator::test::excessive_ref_decs - should panic ... 2023-03-06T18:15:19.198Z 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-06T18:15:19.198Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T18:15:19.198Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 7.621µs -- stats: | ok: 2 events ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 23.406µs ago Execution Start: 4.295µs after creation Execution Finish: 11.916µ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-06T18:15:19.198Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Non-Futures / Non-Fallible Items & NO Metrics 2023-03-06T18:15:19.198Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 6.867µs -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 17.268µs ago Execution Start: 2.416µs after creation Execution Finish: 9.283µ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: 9.221µs ago Execution Start: 2.889µs after creation Execution Finish: 3.264µ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: 8.648µs ago Execution Start: 2.459µs after creation Execution Finish: 3.356µ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-06T18:15:19.198Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Futures (NO timeouts) / Fallible Items & Metrics 2023-03-06T18:15:19.198Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"17"' in 45ns 2023-03-06T18:15:19.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"19"' in 274ns 2023-03-06T18:15:19.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 303.811575ms -- stats: | ok: 4 events; avg 75.935766ms - 13.16606/sec | failed: 2 events; avg 160ns - 6.58303/sec ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 303.844612ms ago Execution Start: 3.267µs after creation Execution Finish: 303.814842ms after creation OK elements count: 4; OK elements average Future resolution time: 0.075935766s -- 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.0000001595s -- verify these values against the "executor closed" message ok <0.304s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_logs_and_no_metrics ... 2023-03-06T18:15:19.502Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Futures (NO timeouts) / Fallible Items & NO Metrics 2023-03-06T18:15:19.502Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"17"' 2023-03-06T18:15:19.654Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"19"' 2023-03-06T18:15:19.805Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 302.537945ms -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 302.563935ms ago Execution Start: 3.806µs after creation Execution Finish: 302.541751ms 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: 302.683858ms ago Execution Start: 2.806µs after creation Execution Finish: 302.665851ms after creation OK elements count: 4; OK elements average Future resolution time: 0.07566458s -- 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.000000037s -- 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: 303.119055ms ago Execution Start: 3.341µs after creation Execution Finish: 303.101909ms 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-06T18:15:20.411Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Futures (with timeouts of 100ms) / Fallible Items & Metrics 2023-03-06T18:15:20.411Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"17"' in 116ns 2023-03-06T18:15:20.513Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & metrics' TIMED OUT after 101.614934ms 2023-03-06T18:15:20.513Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"19"' in 101ns 2023-03-06T18:15:20.614Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & metrics' TIMED OUT after 100.709392ms 2023-03-06T18:15:20.614Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 202.440816ms -- stats: | ok: 2 events; avg 1.152µs - 9.87943/sec | time out: 2 events; avg 101.162165ms - 9.87943/sec | failed: 2 events; avg 109ns - 9.87943/sec ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 202.460657ms ago Execution Start: 4.148µs after creation Execution Finish: 202.444964ms after creation OK elements count: 2; OK elements average Future resolution time: 0.0000011525s -- verify these values against the "executor closed" message TIMED OUT elements count: 2; TIMED OUT elements average Future resolution time: 0.101162165s -- verify these values against the "executor closed" message FAILED elements count: 2; FAILED elements average Future resolution time: 0.000000108500004s -- 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-06T18:15:20.614Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Futures (with timeouts of 100ms) / Fallible Items & NO Metrics 2023-03-06T18:15:20.614Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"17"' 2023-03-06T18:15:20.716Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & NO metrics' TIMED OUT 2023-03-06T18:15:20.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"19"' 2023-03-06T18:15:20.816Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & NO metrics' TIMED OUT 2023-03-06T18:15:20.816Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 202.446878ms -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 202.469755ms ago Execution Start: 3.322µs after creation Execution Finish: 202.4502ms 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.365046ms ago Execution Start: 3.62µs after creation Execution Finish: 202.349766ms after creation OK elements count: 2; OK elements average Future resolution time: 0.00000088649995s -- logs are DISABLED TIMED OUT elements count: 2; TIMED OUT elements average Future resolution time: 0.10116975s -- logs are DISABLED FAILED elements count: 2; FAILED elements average Future resolution time: 0.0000001105s -- logs are DISABLED ok <0.202s> 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.593244ms ago Execution Start: 4.121µs after creation Execution Finish: 202.575878ms 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.118s> 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.116s> test uni::channels::tests::performance_measurements ... TokioMPSC (same task / same thread): 14538430.78/s -- 10485760 items processed in 721.244277ms TokioMPSC (different task / same thread): 13910971.54/s -- 10485760 items processed in 753.776253ms TokioMPSC (different task / different thread): 5424246.99/s -- 10485760 items processed in 1.933127311s AtomicMPMCQueue (same task / same thread): 29561291.93/s -- 10485760 items processed in 354.712508ms AtomicMPMCQueue (different task / same thread): 29124622.09/s -- 10485760 items processed in 360.030766ms AtomicMPMCQueue (different task / different thread): 10362115.56/s -- 10485760 items processed in 1.011932355s OgreMPMCQueue (same task / same thread): 49432338.44/s -- 10485760 items processed in 212.123487ms OgreMPMCQueue (different task / same thread): 9004045.10/s -- 10485760 items processed in 1.164561026s OgreMPMCQueue (different task / different thread): 43036424.96/s -- 10485760 items processed in 243.648491ms ok <6.756s> test uni::channels::tests::tokio_mpsc_queue_doc_test ... receiving: Some("a") ok <0.000s> test uni::tests::async_elements ... 2023-03-06T18:15:30.213Z 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-06T18:15:31.215Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async_elements() Event' ended after running for 1.001528613s -- stats: | ok: 4 events; avg 1.001510978s - 3.99389/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 0 events; avg 0ns - 0.00000/sec ok <1.005s> test uni::tests::demux ... 2023-03-06T18:15:31.218Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T18:15:31.218Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T18:15:31.218Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T18:15:31.220Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO event' ended after running for 2.177327ms -- stats: | ok: 4 events 2023-03-06T18:15:31.322Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR event' ended after running for 103.664405ms -- stats: | ok: 6 events ok <0.108s> test uni::tests::doc_tests ... 2023-03-06T18:15:31.326Z 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-06T18:15:31.329Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() Event' ended after running for 2.335503ms -- stats: | ok: 2 events ok <0.007s> test uni::tests::error_handling ... 2023-03-06T18:15:31.333Z 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-06T18:15:31.333Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'fallible event' yielded ERROR '"BLOW CODE received: 79"' in 118ns ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-06T18:15:31.335Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'fallible event' ended after running for 2.301928ms -- stats: | ok: 3 events; avg 769ns - 1303.25536/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 118ns - 434.41845/sec ok <0.007s> test uni::tests::performance_measurements ... metricfull_non_futures_non_fallible_uni: 24526287.87/s -- 8388608 items processed in 342.025179ms metricless_non_futures_non_fallible_uni: 29444824.45/s -- 8388608 items processed in 284.892444ms par_metricless_non_futures_non_fallible_uni: 6986597.46/s -- 8388608 items processed in 1.200671435s metricfull_futures_fallible_uni: 11026696.92/s -- 8388608 items processed in 760.754382ms metricless_futures_fallible_uni: 18885484.10/s -- 8388608 items processed in 444.182842ms timeoutable_metricfull_futures_fallible_uni: 5627528.69/s -- 6291456 items processed in 1.117978485s timeoutable_metricless_futures_fallible_uni: 7457249.84/s -- 6291456 items processed in 843.669736ms ok <4.995s> test uni::tests::simple_pipeline ... 2023-03-06T18:15:36.335Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'simple_pipeline() Event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T18:15:36.337Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'simple_pipeline() Event' ended after running for 2.142827ms -- stats: | ok: 2 events ok <0.007s> test uni::tests::stats ... 2023-03-06T18:15:36.342Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T18:15:36.344Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event' ended after running for 2.089039ms -- stats: | ok: 1 events 2023-03-06T18:15:36.348Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-06T18:15:36.501Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.106327ms 2023-03-06T18:15:36.652Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event' TIMED OUT after 151.056725ms 2023-03-06T18:15:36.803Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.929248ms 2023-03-06T18:15:36.954Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event' TIMED OUT after 150.628699ms 2023-03-06T18:15:36.954Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event' ended after running for 605.754778ms -- stats: | ok: 2 events; avg 100.940719ms - 3.30167/sec | time out: 2 events; avg 150.842711ms - 3.30167/sec | failed: 2 events; avg 51.017787ms - 3.30167/sec ok <0.616s> test result: ok. 91 passed; 0 failed; 8 ignored; 0 measured; 0 filtered out; finished in 1253.53s 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