Compiling reactive-mutiny v0.1.0 (/tmp/reactive-mutiny) warning: unused imports: `Acquire`, `Release` --> src/uni/channels/ogre_mpmc_queue.rs:17:35 | 17 | use std::sync::atomic::Ordering::{Acquire, Relaxed, Release}; | ^^^^^^^ ^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `marker::PhantomData` --> src/multi/multi_builder.rs:10:5 | 10 | marker::PhantomData, | ^^^^^^^^^^^^^^^^^^^ warning: unused import: `futures::future::BoxFuture` --> src/multi/multi_builder.rs:14:5 | 14 | use futures::future::BoxFuture; | ^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: unused import: `uni::MultiPayload` --> src/multi/channels/ogre_mpmc_queue.rs:2:5 | 2 | uni::MultiPayload, | ^^^^^^^^^^^^^^^^^ warning: unused import: `ManuallyDrop` --> src/types.rs:12:16 | 12 | use std::mem::{ManuallyDrop, MaybeUninit}; | ^^^^^^^^^^^^ warning: unused import: `full_sync_queues::NonBlockingQueue` --> src/ogre_std/reference_counted_buffer_allocator.rs:5:9 | 5 | full_sync_queues::NonBlockingQueue, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: unused import: `AtomicU64` --> src/ogre_std/ogre_queues/atomic_queues/atomic_base.rs:6:30 | 6 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ warning: unused import: `std::pin::Pin` --> src/ogre_std/ogre_queues/atomic_queues/atomic_base.rs:9:5 | 9 | use std::pin::Pin; | ^^^^^^^^^^^^^ warning: unused imports: `AtomicU32`, `mem::MaybeUninit` --> src/ogre_std/ogre_queues/atomic_queues/non_blocking_queue.rs:14:20 | 14 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 15 | mem::MaybeUninit, | ^^^^^^^^^^^^^^^^ warning: unused imports: `AtomicU32`, `mem::MaybeUninit` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:14:20 | 14 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 15 | mem::MaybeUninit, | ^^^^^^^^^^^^^^^^ warning: unused import: `std::future::Future` --> src/ogre_std/ogre_queues/full_sync_queues/full_sync_base.rs:7:5 | 7 | use std::future::Future; | ^^^^^^^^^^^^^^^^^^^ warning: unused import: `std::time::Duration` --> src/ogre_std/ogre_queues/full_sync_queues/full_sync_base.rs:12:5 | 12 | use std::time::Duration; | ^^^^^^^^^^^^^^^^^^^ warning: unused imports: `AtomicU32`, `mem::MaybeUninit` --> src/ogre_std/ogre_queues/full_sync_queues/non_blocking_queue.rs:12:20 | 12 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 13 | mem::MaybeUninit, | ^^^^^^^^^^^^^^^^ warning: unused imports: `AtomicU32`, `mem::MaybeUninit` --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:12:20 | 12 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 13 | mem::MaybeUninit, | ^^^^^^^^^^^^^^^^ warning: unused import: `super::*` --> src/uni/channels/tokio_mpsc.rs:118:9 | 118 | use super::*; | ^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `super::*` --> src/uni/channels/atomic_mpmc_queue.rs:214:9 | 214 | use super::*; | ^^^^^^^^ warning: unused imports: `Acquire`, `Release` --> src/uni/channels/ogre_mpmc_queue.rs:17:35 | 17 | use std::sync::atomic::Ordering::{Acquire, Relaxed, Release}; | ^^^^^^^ ^^^^^^^ warning: unused import: `super::*` --> src/uni/channels/ogre_mpmc_queue.rs:257:9 | 257 | use super::*; | ^^^^^^^^ warning: unused import: `std::io::Write` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:333:9 | 333 | use std::io::Write; | ^^^^^^^^^^^^^^ warning: unused import: `std::time::SystemTime` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:334:9 | 334 | use std::time::SystemTime; | ^^^^^^^^^^^^^^^^^^^^^ warning: unused import: `Duration` --> src/ogre_std/ogre_queues/blocking_queue.rs:350:32 | 350 | use std::time::{SystemTime,Duration}; | ^^^^^^^^ warning: unused import: `OgreQueue` --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:5:9 | 5 | OgreQueue, | ^^^^^^^^^ warning: unused import: `super::super::OgreQueue` --> src/ogre_std/ogre_queues/atomic_queues/atomic_base.rs:3:5 | 3 | use super::super::OgreQueue; | ^^^^^^^^^^^^^^^^^^^^^^^ warning: unused variable: `empty_guard_ref` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:264:39 | 264 | fn set_empty_guard_ref(&mut self, empty_guard_ref: &'_ RawMutex) { | ^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_empty_guard_ref` | = note: `#[warn(unused_variables)]` on by default warning: unused variable: `buffer` --> src/ogre_std/ogre_queues/full_sync_queues/full_sync_base.rs:172:56 | 172 | let Self {full_guard, concurrency_guard, tail, buffer, head, empty_guard} = self; | ^^^^^^ help: try ignoring the field: `buffer: _` warning: struct `TokioMPSC` is never constructed --> src/uni/channels/tokio_mpsc.rs:15:12 | 15 | pub struct TokioMPSC { | ^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default warning: associated function `new` is never used --> src/uni/channels/tokio_mpsc.rs:23:12 | 23 | pub fn new() -> Arc>> { | ^^^ warning: associated function `consumer_stream` is never used --> src/uni/channels/tokio_mpsc.rs:31:12 | 31 | pub fn consumer_stream(self: &Arc>>) -> Option> { | ^^^^^^^^^^^^^^^ warning: associated function `send` is never used --> src/uni/channels/tokio_mpsc.rs:58:18 | 58 | pub async fn send(&self, item: ItemType) { | ^^^^ warning: associated function `try_send` is never used --> src/uni/channels/tokio_mpsc.rs:65:12 | 65 | pub fn try_send(&self, item: ItemType) -> bool { | ^^^^^^^^ warning: associated function `zero_copy_try_send` is never used --> src/uni/channels/tokio_mpsc.rs:75:15 | 75 | 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:79:18 | 79 | pub async fn flush(&self, timeout: Duration) -> u32 { | ^^^^^ warning: associated function `end_all_streams` is never used --> src/uni/channels/tokio_mpsc.rs:99:18 | 99 | 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:108:12 | 108 | pub fn pending_items_count(&self) -> u32 { | ^^^^^^^^^^^^^^^^^^^ warning: associated function `consumer_stream` is never used --> src/uni/channels/atomic_mpmc_queue.rs:46:12 | 46 | pub fn consumer_stream(self: &Arc>>) -> Option> { | ^^^^^^^^^^^^^^^ warning: associated function `wake_all_streams` is never used --> src/uni/channels/atomic_mpmc_queue.rs:116:8 | 116 | fn wake_all_streams(&self) { | ^^^^^^^^^^^^^^^^ warning: associated function `new` is never used --> src/uni/channels/atomic_mpmc_queue.rs:146:12 | 146 | pub fn new() -> Arc>> { | ^^^ warning: associated function `flush` is never used --> src/uni/channels/atomic_mpmc_queue.rs:171:18 | 171 | pub async fn flush(&self, timeout: Duration) -> u32 { | ^^^^^ warning: associated function `end_all_streams` is never used --> src/uni/channels/atomic_mpmc_queue.rs:192:18 | 192 | 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:204:12 | 204 | 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:52:10 | 52 | pub type ReferenceCountedAllocator = ReferenceCountedNonBlockingCustomStackAllocator src/ogre_std/reference_counted_buffer_allocator.rs:55:10 | 55 | pub type ReferenceCountedBlockingAllocator = ReferenceCountedNonBlockingCustomStackAllocator src/ogre_std/ogre_queues/full_sync_queues/full_sync_base.rs:19:5 | 15 | pub struct FullSyncBase src/ogre_std/ogre_queues/full_sync_queues/full_sync_base.rs:171:12 | 171 | pub fn debug_info(&self) -> String { | ^^^^^^^^^^ warning: struct `AsyncBase` is never constructed --> src/ogre_std/ogre_queues/async_queues/async_base.rs:12:12 | 12 | pub struct AsyncBase src/ogre_std/ogre_queues/async_queues/async_base.rs:134:10 | 134 | async fn lock(raw_mutex: &AtomicBool) { | ^^^^ warning: function `unlock` is never used --> src/ogre_std/ogre_queues/async_queues/async_base.rs:163:4 | 163 | fn unlock(raw_mutex: &AtomicBool) { | ^^^^^^ warning: associated function `new` is never used --> src/ogre_std/ogre_queues/async_queues/async_base.rs:39:12 | 39 | pub fn new() -> Self { | ^^^ warning: associated function `enqueue` is never used --> src/ogre_std/ogre_queues/async_queues/async_base.rs:51:18 | 51 | pub async fn enqueue src/ogre_std/ogre_queues/async_queues/async_base.rs:88:18 | 88 | pub async fn dequeue ReportEmptyFnFuture, | ^^^^^^^ warning: associated function `len` is never used --> src/ogre_std/ogre_queues/async_queues/async_base.rs:121:12 | 121 | pub fn len(&self) -> usize { | ^^^ warning: associated function `buffer_size` is never used --> src/ogre_std/ogre_queues/async_queues/async_base.rs:125:12 | 125 | pub fn buffer_size(&self) -> usize { | ^^^^^^^^^^^ warning: struct `NonBlockingQueue` is never constructed --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:20:12 | 20 | pub struct NonBlockingQueue src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:42:8 | 42 | fn new>(queue_name: IntoString) -> Pin> where Self: Sized { | ^^^ warning: associated function `enqueue` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:54:18 | 54 | pub async fn enqueue(&self, element: SlotType) -> bool { | ^^^^^^^ warning: associated function `dequeue` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:77:18 | 77 | pub async fn dequeue(&self) -> Option { | ^^^^^^^ warning: associated function `len` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:97:12 | 97 | pub fn len(&self) -> usize { | ^^^ warning: associated function `buffer_size` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:101:12 | 101 | pub fn buffer_size(&self) -> usize { | ^^^^^^^^^^^ warning: associated function `debug_enabled` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:105:12 | 105 | pub fn debug_enabled(&self) -> bool { | ^^^^^^^^^^^^^ warning: associated function `metrics_enabled` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:109:12 | 109 | pub fn metrics_enabled(&self) -> bool { | ^^^^^^^^^^^^^^^ warning: associated function `queue_name` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:113:12 | 113 | pub fn queue_name(&self) -> &str { | ^^^^^^^^^^ warning: associated function `implementation_name` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:117:12 | 117 | pub fn implementation_name(&self) -> &str { | ^^^^^^^^^^^^^^^^^^^ warning: associated function `interrupt` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:121:8 | 121 | fn interrupt(&self) { | ^^^^^^^^^ warning: associated function `debug` is never used --> src/ogre_std/ogre_queues/blocking_queue.rs:337:12 | 337 | pub fn debug(&self) { | ^^^^^ warning: function `all_in_and_out_benchmark` is never used --> 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 constant `METRICS` is never used --> src/ogre_std/container_instruments.rs:19:11 | 19 | const METRICS: usize = 1; | ^^^^^^^ warning: associated constant `METRICS_DIAGNOSTICS` is never used --> src/ogre_std/container_instruments.rs:20:11 | 20 | const METRICS_DIAGNOSTICS: usize = 2; | ^^^^^^^^^^^^^^^^^^^ warning: associated constant `TRACING` is never used --> src/ogre_std/container_instruments.rs:21:11 | 21 | const TRACING: usize = 4; | ^^^^^^^ warning: associated function `into` is never used --> src/ogre_std/container_instruments.rs:43:18 | 43 | 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 may changing it by mem init with zeroes solve the war... | ^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed | = note: `#[warn(deref_nullptr)]` on by default warning: method `metricsDiagnostics` should have a snake case name --> src/ogre_std/container_instruments.rs:74:18 | 74 | pub const fn metricsDiagnostics(self) -> bool { | ^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `metrics_diagnostics` | = note: `#[warn(non_snake_case)]` on by default warning: `reactive-mutiny` (lib) generated 73 warnings warning: unused variable: `i` --> src/ogre_std/ogre_queues/blocking_queue.rs:412:40 | 412 | assert_non_blocking(|| for i in 0..QUEUE_SIZE { | ^ help: if this is intentional, prefix it with an underscore: `_i` warning: unused variable: `result` --> src/ogre_std/ogre_queues/blocking_queue.rs:439:17 | 439 | let result = op(); | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_result` warning: associated function `send` is never used --> src/uni/channels/tokio_mpsc.rs:58:18 | 58 | pub async fn send(&self, item: ItemType) { | ^^^^ | = note: `#[warn(dead_code)]` on by default warning: function `basic_queue_use_cases_non_blocking` is never used --> src/ogre_std/ogre_queues/blocking_queue.rs:359:8 | 359 | fn basic_queue_use_cases_non_blocking() { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: `reactive-mutiny` (lib test) generated 57 warnings (46 duplicates) Finished release [optimized] target(s) in 14m 17s Running unittests src/lib.rs (target/release/deps/reactive_mutiny-59b16f1b00df279e) --> LOGGER WAS ALREADY STARTED --> LOGGER WAS ALREADY STARTED 2023-03-16T16:05:54.125Z INFO [reactive_mutiny::stream_executor::tests] minstant: is TSC / RDTSC instruction available for time measurement? false running 98 tests test incremental_averages::tests::incremental_averages ... ok <1.121s> test multi::channels::ogre_mpmc_queue::tests::doc_test ... received: a ok <0.002s> test multi::channels::ogre_mpmc_queue::tests::end_streams ... Creating & ending a single stream: Creating & ending two streams: ok <0.109s> test multi::channels::ogre_mpmc_queue::tests::multiple_streams ... ok <1.151s> 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.137s> test multi::channels::ogre_mpmc_queue::tests::payload_dropping ... ok <0.002s> test multi::channels::ogre_mpmc_queue::tests::performance_measurements ... OgreMPMCQueue (same task / same thread): 7595107.68/s -- 10485760 items processed in 1.380593987s OgreMPMCQueue (different task / same thread): 4418347.42/s -- 10485760 items processed in 2.373231214s OgreMPMCQueue (different task / different thread): 6106341.92/s -- 10485760 items processed in 1.717191754s ok <5.489s> test multi::channels::ogre_mpmc_queue::tests::stream_and_channel_dropping ... Dropping the channel before the stream consumes the element: received: a Dropping the stream before the channel produces something, then another stream is created to consume the element: received: a ok <0.001s> test multi::tests::async_elements ... 2023-03-16T16:06:02.182Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'async event: Stream Pipeline #1' started: Futures (with timeouts of 2s) / Fallible Items & Metrics 2023-03-16T16:06:02.182Z 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-16T16:06:03.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async event: Stream Pipeline #1' ended after running for 1.002078884s -- stats: | ok: 4 events; avg 1.001745462s - 3.99170/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-16T16:06:03.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async event: Stream Pipeline #2' ended after running for 1.002844771s -- stats: | ok: 4 events; avg 1.002647638s - 3.98865/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 0 events; avg 0ns - 0.00000/sec ok <1.008s> test multi::tests::delete_pipelines ... 2023-03-16T16:06:03.203Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.203Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 526.277µs -- stats: | ok: 0 events 2023-03-16T16:06:03.204Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.209Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 5.690215ms -- stats: | ok: 0 events 2023-03-16T16:06:03.213Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.215Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 1.662835ms -- stats: | ok: 0 events 2023-03-16T16:06:03.217Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.218Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 1.446547ms -- stats: | ok: 0 events 2023-03-16T16:06:03.223Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.227Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 4.116177ms -- stats: | ok: 0 events 2023-03-16T16:06:03.229Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.229Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 297.779µs -- stats: | ok: 0 events 2023-03-16T16:06:03.229Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.231Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.054999ms -- stats: | ok: 0 events 2023-03-16T16:06:03.234Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.235Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 761.265µs -- stats: | ok: 0 events 2023-03-16T16:06:03.235Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.237Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.756241ms -- stats: | ok: 0 events 2023-03-16T16:06:03.240Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 2.196299ms -- stats: | ok: 0 events 2023-03-16T16:06:03.242Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 385.628µs -- stats: | ok: 0 events 2023-03-16T16:06:03.245Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.245Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 196.528µs -- stats: | ok: 0 events 2023-03-16T16:06:03.245Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.247Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.748803ms -- stats: | ok: 0 events 2023-03-16T16:06:03.249Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 193.731µs -- stats: | ok: 0 events 2023-03-16T16:06:03.250Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.252Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.272233ms -- stats: | ok: 0 events 2023-03-16T16:06:03.255Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.255Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 288.792µs -- stats: | ok: 0 events 2023-03-16T16:06:03.256Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.778361ms -- stats: | ok: 0 events 2023-03-16T16:06:03.260Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.261Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 421.332µs -- stats: | ok: 0 events 2023-03-16T16:06:03.261Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.263Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.376075ms -- stats: | ok: 0 events 2023-03-16T16:06:03.267Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.267Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 261.163µs -- stats: | ok: 0 events 2023-03-16T16:06:03.267Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.273Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 5.346603ms -- stats: | ok: 0 events 2023-03-16T16:06:03.275Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.275Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 182.333µs -- stats: | ok: 0 events 2023-03-16T16:06:03.275Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.279Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 3.405592ms -- stats: | ok: 0 events 2023-03-16T16:06:03.281Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.281Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 166.293µs -- stats: | ok: 0 events 2023-03-16T16:06:03.281Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.282Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.435621ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.285Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 242.933µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.289Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 3.431076ms -- stats: | ok: 0 events 2023-03-16T16:06:03.291Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.291Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 233.38µs -- stats: | ok: 0 events 2023-03-16T16:06:03.291Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.294Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 3.008877ms -- stats: | ok: 0 events 2023-03-16T16:06:03.297Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.297Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 100.093µs -- stats: | ok: 0 events 2023-03-16T16:06:03.297Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.300Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.527442ms -- stats: | ok: 0 events 2023-03-16T16:06:03.301Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.301Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 102.685µs -- stats: | ok: 0 events 2023-03-16T16:06:03.302Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.304Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.562093ms -- stats: | ok: 0 events 2023-03-16T16:06:03.307Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.307Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 104.966µs -- stats: | ok: 0 events 2023-03-16T16:06:03.307Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.309Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.764026ms -- stats: | ok: 0 events 2023-03-16T16:06:03.311Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.311Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 96.42µs -- stats: | ok: 0 events 2023-03-16T16:06:03.311Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.314Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.381921ms -- stats: | ok: 0 events 2023-03-16T16:06:03.316Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.316Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 93.788µs -- stats: | ok: 0 events 2023-03-16T16:06:03.316Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.319Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.388993ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.321Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 90.018µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.324Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.386452ms -- stats: | ok: 0 events 2023-03-16T16:06:03.326Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.326Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 90.75µs -- stats: | ok: 0 events 2023-03-16T16:06:03.326Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.328Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.334803ms -- stats: | ok: 0 events 2023-03-16T16:06:03.331Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.331Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 91.968µs -- stats: | ok: 0 events 2023-03-16T16:06:03.331Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.333Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.412752ms -- stats: | ok: 0 events 2023-03-16T16:06:03.336Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.336Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 89.988µs -- stats: | ok: 0 events 2023-03-16T16:06:03.336Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.338Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.430521ms -- stats: | ok: 0 events 2023-03-16T16:06:03.341Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.341Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 91.377µs -- stats: | ok: 0 events 2023-03-16T16:06:03.341Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.342Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.431019ms -- stats: | ok: 0 events 2023-03-16T16:06:03.345Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.345Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 96.369µs -- stats: | ok: 0 events 2023-03-16T16:06:03.345Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.347Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.742978ms -- stats: | ok: 0 events 2023-03-16T16:06:03.348Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.348Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 97.152µs -- stats: | ok: 0 events 2023-03-16T16:06:03.348Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.351Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.292483ms -- stats: | ok: 0 events 2023-03-16T16:06:03.352Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.352Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 108.776µs -- stats: | ok: 0 events 2023-03-16T16:06:03.352Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.355Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.285606ms -- stats: | ok: 0 events 2023-03-16T16:06:03.357Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 143.983µs -- stats: | ok: 0 events 2023-03-16T16:06:03.357Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.360Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.299676ms -- stats: | ok: 0 events 2023-03-16T16:06:03.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.362Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 93.582µs -- stats: | ok: 0 events 2023-03-16T16:06:03.362Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.365Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.287907ms -- stats: | ok: 0 events 2023-03-16T16:06:03.367Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.367Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 99.282µs -- stats: | ok: 0 events 2023-03-16T16:06:03.367Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.369Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.334914ms -- stats: | ok: 0 events 2023-03-16T16:06:03.372Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.372Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 95.893µs -- stats: | ok: 0 events 2023-03-16T16:06:03.372Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.374Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.417114ms -- stats: | ok: 0 events 2023-03-16T16:06:03.376Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.376Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 94.043µs -- stats: | ok: 0 events 2023-03-16T16:06:03.376Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.379Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.284759ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.381Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 95.467µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.383Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.323255ms -- stats: | ok: 0 events 2023-03-16T16:06:03.386Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.386Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 95.593µs -- stats: | ok: 0 events 2023-03-16T16:06:03.386Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.387Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.520571ms -- stats: | ok: 0 events 2023-03-16T16:06:03.390Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.390Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 93.507µs -- stats: | ok: 0 events 2023-03-16T16:06:03.390Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.392Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.299365ms -- stats: | ok: 0 events 2023-03-16T16:06:03.395Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.395Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 94.169µs -- stats: | ok: 0 events 2023-03-16T16:06:03.395Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.397Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.63915ms -- stats: | ok: 0 events 2023-03-16T16:06:03.399Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.399Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 97.477µs -- stats: | ok: 0 events 2023-03-16T16:06:03.399Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.402Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.382266ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.403Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 156.177µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.405Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.982413ms -- stats: | ok: 0 events 2023-03-16T16:06:03.408Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.408Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 157.572µs -- stats: | ok: 0 events 2023-03-16T16:06:03.408Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.411Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.600072ms -- stats: | ok: 0 events 2023-03-16T16:06:03.412Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.412Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 149.627µs -- stats: | ok: 0 events 2023-03-16T16:06:03.413Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.415Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.302844ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.416Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 95.733µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.419Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.303736ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.420Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 100.164µs -- stats: | ok: 0 events 2023-03-16T16:06:03.421Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.423Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.365971ms -- stats: | ok: 0 events 2023-03-16T16:06:03.425Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.425Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 93.718µs -- stats: | ok: 0 events 2023-03-16T16:06:03.425Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.428Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.291861ms -- stats: | ok: 0 events 2023-03-16T16:06:03.429Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.429Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 95.612µs -- stats: | ok: 0 events 2023-03-16T16:06:03.429Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.433Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 3.376145ms -- stats: | ok: 0 events 2023-03-16T16:06:03.434Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.435Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 99.688µs -- stats: | ok: 0 events 2023-03-16T16:06:03.435Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.437Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.329921ms -- stats: | ok: 0 events 2023-03-16T16:06:03.439Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.439Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 109.171µs -- stats: | ok: 0 events 2023-03-16T16:06:03.440Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.442Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.530139ms -- stats: | ok: 0 events 2023-03-16T16:06:03.445Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.445Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 99.557µs -- stats: | ok: 0 events 2023-03-16T16:06:03.445Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.446Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.633963ms -- stats: | ok: 0 events 2023-03-16T16:06:03.449Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.449Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 236.868µs -- stats: | ok: 0 events 2023-03-16T16:06:03.449Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.453Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.372146ms -- stats: | ok: 0 events 2023-03-16T16:06:03.454Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.454Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.222µs -- stats: | ok: 0 events 2023-03-16T16:06:03.454Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.456Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.352346ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.458Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 100.404µs -- stats: | ok: 0 events 2023-03-16T16:06:03.458Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.461Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.306363ms -- stats: | ok: 0 events 2023-03-16T16:06:03.462Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.462Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 128.298µs -- stats: | ok: 0 events 2023-03-16T16:06:03.462Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.464Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.174089ms -- stats: | ok: 0 events 2023-03-16T16:06:03.467Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.467Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 79.617µs -- stats: | ok: 0 events 2023-03-16T16:06:03.467Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.469Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.624128ms -- stats: | ok: 0 events 2023-03-16T16:06:03.471Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.471Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 84.575µs -- stats: | ok: 0 events 2023-03-16T16:06:03.471Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.473Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.2755ms -- stats: | ok: 0 events 2023-03-16T16:06:03.476Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.476Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.693µs -- stats: | ok: 0 events 2023-03-16T16:06:03.476Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.477Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.459374ms -- stats: | ok: 0 events 2023-03-16T16:06:03.479Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.479Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 139.01µs -- stats: | ok: 0 events 2023-03-16T16:06:03.479Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.481Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.065575ms -- stats: | ok: 0 events 2023-03-16T16:06:03.483Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.483Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 81.853µs -- stats: | ok: 0 events 2023-03-16T16:06:03.483Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.485Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.075926ms -- stats: | ok: 0 events 2023-03-16T16:06:03.488Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.488Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 80.535µs -- stats: | ok: 0 events 2023-03-16T16:06:03.488Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.489Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.502782ms -- stats: | ok: 0 events 2023-03-16T16:06:03.492Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.492Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.936µs -- stats: | ok: 0 events 2023-03-16T16:06:03.492Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.493Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.356153ms -- stats: | ok: 0 events 2023-03-16T16:06:03.495Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.496Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.146µs -- stats: | ok: 0 events 2023-03-16T16:06:03.496Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.498Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.252599ms -- stats: | ok: 0 events 2023-03-16T16:06:03.500Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.500Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.352µs -- stats: | ok: 0 events 2023-03-16T16:06:03.500Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.503Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.244859ms -- stats: | ok: 0 events 2023-03-16T16:06:03.505Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.505Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.292µs -- stats: | ok: 0 events 2023-03-16T16:06:03.505Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.507Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.351394ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.510Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.317µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.512Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.635306ms -- stats: | ok: 0 events 2023-03-16T16:06:03.514Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.533µs -- stats: | ok: 0 events 2023-03-16T16:06:03.514Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.515Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.369095ms -- stats: | ok: 0 events 2023-03-16T16:06:03.518Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.518Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.032µs -- stats: | ok: 0 events 2023-03-16T16:06:03.518Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.519Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.259598ms -- stats: | ok: 0 events 2023-03-16T16:06:03.521Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.257µs -- stats: | ok: 0 events 2023-03-16T16:06:03.522Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.524Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.31741ms -- stats: | ok: 0 events 2023-03-16T16:06:03.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.526Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.505µs -- stats: | ok: 0 events 2023-03-16T16:06:03.526Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.529Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.316833ms -- stats: | ok: 0 events 2023-03-16T16:06:03.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.531Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.395µs -- stats: | ok: 0 events 2023-03-16T16:06:03.531Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.35579ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.536Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 70.455µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.538Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.020363ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.540Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 78.175µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.543Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.322302ms -- stats: | ok: 0 events 2023-03-16T16:06:03.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.544Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.753µs -- stats: | ok: 0 events 2023-03-16T16:06:03.544Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.546Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.241868ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.549Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 78.485µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.550Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.260019ms -- stats: | ok: 0 events 2023-03-16T16:06:03.552Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.553Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.492µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.555Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.418375ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.557Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.808µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.560Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.246679ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.562Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 70.515µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.565Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.82681ms -- stats: | ok: 0 events 2023-03-16T16:06:03.567Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.567Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 69.237µs -- stats: | ok: 0 events 2023-03-16T16:06:03.567Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.570Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.233552ms -- stats: | ok: 0 events 2023-03-16T16:06:03.572Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.572Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.443µs -- stats: | ok: 0 events 2023-03-16T16:06:03.572Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.574Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.207978ms -- stats: | ok: 0 events 2023-03-16T16:06:03.577Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.577Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 67.522µs -- stats: | ok: 0 events 2023-03-16T16:06:03.577Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.246163ms -- stats: | ok: 0 events 2023-03-16T16:06:03.581Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.581Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 69.297µs -- stats: | ok: 0 events 2023-03-16T16:06:03.581Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.233702ms -- stats: | ok: 0 events 2023-03-16T16:06:03.586Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.586Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.487µs -- stats: | ok: 0 events 2023-03-16T16:06:03.586Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.342978ms -- stats: | ok: 0 events 2023-03-16T16:06:03.591Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.591Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.209µs -- stats: | ok: 0 events 2023-03-16T16:06:03.591Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.592Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.267889ms -- stats: | ok: 0 events 2023-03-16T16:06:03.594Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.342µs -- stats: | ok: 0 events 2023-03-16T16:06:03.595Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.597Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.236103ms -- stats: | ok: 0 events 2023-03-16T16:06:03.598Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.598Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 129.792µs -- stats: | ok: 0 events 2023-03-16T16:06:03.598Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.601Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.239401ms -- stats: | ok: 0 events 2023-03-16T16:06:03.603Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.603Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.848µs -- stats: | ok: 0 events 2023-03-16T16:06:03.603Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.604Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.318765ms -- stats: | ok: 0 events 2023-03-16T16:06:03.607Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.061µs -- stats: | ok: 0 events 2023-03-16T16:06:03.607Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.608Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.476396ms -- stats: | ok: 0 events 2023-03-16T16:06:03.610Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.611Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 69.447µs -- stats: | ok: 0 events 2023-03-16T16:06:03.611Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.613Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.233387ms -- stats: | ok: 0 events 2023-03-16T16:06:03.615Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.615Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.342µs -- stats: | ok: 0 events 2023-03-16T16:06:03.615Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.618Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.244745ms -- stats: | ok: 0 events 2023-03-16T16:06:03.620Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.620Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.981µs -- stats: | ok: 0 events 2023-03-16T16:06:03.620Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.622Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.3777ms -- stats: | ok: 0 events 2023-03-16T16:06:03.625Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.625Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 80.705µs -- stats: | ok: 0 events 2023-03-16T16:06:03.625Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.626Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.378413ms -- stats: | ok: 0 events 2023-03-16T16:06:03.629Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.629Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.415µs -- stats: | ok: 0 events 2023-03-16T16:06:03.629Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.631Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.241611ms -- stats: | ok: 0 events 2023-03-16T16:06:03.633Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.633Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.429µs -- stats: | ok: 0 events 2023-03-16T16:06:03.633Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.636Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.244965ms -- stats: | ok: 0 events 2023-03-16T16:06:03.638Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.638Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 78.6µs -- stats: | ok: 0 events 2023-03-16T16:06:03.638Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.640Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.26935ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.643Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.964µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.644Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.265583ms -- stats: | ok: 0 events 2023-03-16T16:06:03.646Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.647Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.607µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.649Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.239772ms -- stats: | ok: 0 events 2023-03-16T16:06:03.650Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.650Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 130.935µs -- stats: | ok: 0 events 2023-03-16T16:06:03.650Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.653Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.315741ms -- stats: | ok: 0 events 2023-03-16T16:06:03.655Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.655Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 83.182µs -- stats: | ok: 0 events 2023-03-16T16:06:03.655Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.657Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.385795ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.660Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.528µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.661Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.350017ms -- stats: | ok: 0 events 2023-03-16T16:06:03.664Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.664Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.6µs -- stats: | ok: 0 events 2023-03-16T16:06:03.664Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.665Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.26651ms -- stats: | ok: 0 events 2023-03-16T16:06:03.667Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.667Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.254µs -- stats: | ok: 0 events 2023-03-16T16:06:03.668Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.670Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.25695ms -- stats: | ok: 0 events 2023-03-16T16:06:03.672Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.673Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 84.365µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.675Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.32755ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.677Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.355µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.680Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.249746ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.681Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 79.387µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.684Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.244063ms -- stats: | ok: 0 events 2023-03-16T16:06:03.686Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.686Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 82.235µs -- stats: | ok: 0 events 2023-03-16T16:06:03.686Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.688Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.280182ms -- stats: | ok: 0 events 2023-03-16T16:06:03.691Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.691Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.091µs -- stats: | ok: 0 events 2023-03-16T16:06:03.691Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.692Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.428518ms -- stats: | ok: 0 events 2023-03-16T16:06:03.695Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.695Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.612µs -- stats: | ok: 0 events 2023-03-16T16:06:03.695Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.696Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.472552ms -- stats: | ok: 0 events 2023-03-16T16:06:03.699Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.699Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.951µs -- stats: | ok: 0 events 2023-03-16T16:06:03.699Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.700Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.374959ms -- stats: | ok: 0 events 2023-03-16T16:06:03.703Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.703Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.636µs -- stats: | ok: 0 events 2023-03-16T16:06:03.703Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.705Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.238654ms -- stats: | ok: 0 events 2023-03-16T16:06:03.707Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.707Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.75µs -- stats: | ok: 0 events 2023-03-16T16:06:03.707Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.710Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.32965ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.711Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 78.485µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.714Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.322246ms -- stats: | ok: 0 events 2023-03-16T16:06:03.716Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.716Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.701µs -- stats: | ok: 0 events 2023-03-16T16:06:03.716Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.718Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.276178ms -- stats: | ok: 0 events 2023-03-16T16:06:03.721Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.721Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.606µs -- stats: | ok: 0 events 2023-03-16T16:06:03.721Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.722Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.320434ms -- stats: | ok: 0 events 2023-03-16T16:06:03.724Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.724Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.031µs -- stats: | ok: 0 events 2023-03-16T16:06:03.724Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.727Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.314864ms -- stats: | ok: 0 events 2023-03-16T16:06:03.728Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.728Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.896µs -- stats: | ok: 0 events 2023-03-16T16:06:03.728Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.731Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.322403ms -- stats: | ok: 0 events 2023-03-16T16:06:03.733Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.733Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 69.763µs -- stats: | ok: 0 events 2023-03-16T16:06:03.733Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.735Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.262603ms -- stats: | ok: 0 events 2023-03-16T16:06:03.738Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.738Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 70.591µs -- stats: | ok: 0 events 2023-03-16T16:06:03.738Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.740Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.243912ms -- stats: | ok: 0 events 2023-03-16T16:06:03.742Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.742Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 70.44µs -- stats: | ok: 0 events 2023-03-16T16:06:03.742Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.745Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.237051ms -- stats: | ok: 0 events 2023-03-16T16:06:03.747Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.747Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.583µs -- stats: | ok: 0 events 2023-03-16T16:06:03.747Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.749Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.344547ms -- stats: | ok: 0 events 2023-03-16T16:06:03.752Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.752Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.111µs -- stats: | ok: 0 events 2023-03-16T16:06:03.752Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.753Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.363616ms -- stats: | ok: 0 events 2023-03-16T16:06:03.755Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.756Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.086µs -- stats: | ok: 0 events 2023-03-16T16:06:03.756Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.758Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.239266ms -- stats: | ok: 0 events 2023-03-16T16:06:03.760Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.760Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.605µs -- stats: | ok: 0 events 2023-03-16T16:06:03.760Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.763Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.904488ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.766Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.988µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.767Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.268235ms -- stats: | ok: 0 events 2023-03-16T16:06:03.769Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.770Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 69.813µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.772Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.231311ms -- stats: | ok: 0 events 2023-03-16T16:06:03.773Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.773Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 137.537µs -- stats: | ok: 0 events 2023-03-16T16:06:03.773Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.776Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.32766ms -- stats: | ok: 0 events 2023-03-16T16:06:03.778Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.387µs -- stats: | ok: 0 events 2023-03-16T16:06:03.778Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.588859ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.708µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.786Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.589014ms -- stats: | ok: 0 events 2023-03-16T16:06:03.788Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 82.445µs -- stats: | ok: 0 events 2023-03-16T16:06:03.788Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.791Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.517948ms -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.792Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.067µs -- stats: | ok: 0 events 2023-03-16T16:06:03.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-16T16:06:03.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.31338ms -- stats: | ok: 0 events 2023-03-16T16:06:03.797Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.797Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.981µs -- stats: | ok: 0 events 2023-03-16T16:06:03.797Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.799Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.308693ms -- stats: | ok: 0 events 2023-03-16T16:06:03.802Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.802Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 68.656µs -- stats: | ok: 0 events 2023-03-16T16:06:03.802Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.804Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.284262ms -- stats: | ok: 0 events 2023-03-16T16:06:03.806Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.806Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.746µs -- stats: | ok: 0 events 2023-03-16T16:06:03.806Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.809Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.296809ms -- stats: | ok: 0 events 2023-03-16T16:06:03.810Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.812Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #2' ended after running for 2.261937ms -- stats: | ok: 1 events ok <0.618s> test multi::tests::demux ... 2023-03-16T16:06:03.820Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.820Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.820Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.820Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.820Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.821Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:03.924Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO: Pipeline #1' ended after running for 104.048615ms -- stats: | ok: 4 events 2023-03-16T16:06:03.924Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO: Pipeline #2' ended after running for 103.866087ms -- stats: | ok: 4 events 2023-03-16T16:06:03.924Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR: Pipeline #1' ended after running for 103.643669ms -- stats: | ok: 6 events 2023-03-16T16:06:03.924Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR: Pipeline #2' ended after running for 103.659824ms -- stats: | ok: 6 events 2023-03-16T16:06:03.924Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIX: Pipeline #1' ended after running for 104.854461ms -- stats: | ok: 1 events 2023-03-16T16:06:03.925Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIX: Pipeline #2' ended after running for 104.857178ms -- stats: | ok: 1 events ok <0.110s> test multi::tests::doc_tests ... 2023-03-16T16:06:03.933Z 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-16T16:06:03.933Z 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-16T16:06:03.933Z 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-16T16:06:03.935Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: local screen' ended after running for 2.694421ms -- stats: | ok: 2 events 2023-03-16T16:06:03.939Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: zeta receiver' ended after running for 5.762024ms -- stats: | ok: 2 events 2023-03-16T16:06:03.939Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: earth snapper' ended after running for 6.300291ms -- stats: | ok: 2 events ok <0.012s> test multi::tests::error_handling ... 2023-03-16T16:06:03.946Z 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-16T16:06:03.947Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'Event with error handling: Pipeline #1' yielded ERROR '"BLOW CODE received: 79"' in 3.914µs Pipeline #1: ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-16T16:06:03.947Z 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-16T16:06:03.947Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'Event with error handling: Pipeline #2' yielded ERROR '"BLOW CODE received: 79"' in 1.448µs Pipeline #2: ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-16T16:06:03.949Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with error handling: Pipeline #1' ended after running for 2.13044ms -- stats: | ok: 3 events; avg 18.036µs - 1408.15982/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 3.914µs - 469.38661/sec 2023-03-16T16:06:03.949Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with error handling: Pipeline #2' ended after running for 2.227878ms -- stats: | ok: 3 events; avg 14.907µs - 1346.57284/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 1.448µs - 448.85761/sec ok <0.009s> test multi::tests::performance_measurements ... metricfull_non_futures_non_fallible_multi: 4488277.25/s -- 4194304 items processed in 934.501986ms metricless_non_futures_non_fallible_multi: 5789205.26/s -- 4194304 items processed in 724.504282ms par_metricless_non_futures_non_fallible_multi: 1711643.90/s -- 4194304 items processed in 2.45045362s metricfull_futures_fallible_multi: 2518023.84/s -- 4194304 items processed in 1.665712583s metricless_futures_fallible_multi: 4819612.51/s -- 4194304 items processed in 870.257514ms timeoutable_metricfull_futures_fallible_multi: 1146604.91/s -- 3145728 items processed in 2.743515191s timeoutable_metricless_futures_fallible_multi: 1692182.43/s -- 3145728 items processed in 1.858976877s ok <11.261s> test multi::tests::simple_pipelines ... 2023-03-16T16:06:15.217Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Simple Event: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:15.217Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Simple Event: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:15.219Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Simple Event: Pipeline #1' ended after running for 2.217482ms -- stats: | ok: 2 events 2023-03-16T16:06:15.219Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Simple Event: Pipeline #2' ended after running for 2.222229ms -- stats: | ok: 2 events ok <0.007s> test multi::tests::stats ... 2023-03-16T16:06:15.227Z 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-16T16:06:15.227Z 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-16T16:06:15.227Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.228Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.229Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.232Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.233Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.234Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.235Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.236Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.237Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.238Z 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-16T16:06:15.240Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #0 for non_future/non_fallible event' ended after running for 12.845755ms -- stats: | ok: 1 events 2023-03-16T16:06:15.240Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #1 for non_future/non_fallible event' ended after running for 12.866708ms -- stats: | ok: 1 events 2023-03-16T16:06:15.240Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #2 for non_future/non_fallible event' ended after running for 12.868472ms -- stats: | ok: 1 events 2023-03-16T16:06:15.240Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #3 for non_future/non_fallible event' ended after running for 12.750469ms -- stats: | ok: 1 events 2023-03-16T16:06:15.240Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #4 for non_future/non_fallible event' ended after running for 12.755005ms -- stats: | ok: 1 events 2023-03-16T16:06:15.240Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #5 for non_future/non_fallible event' ended after running for 12.766383ms -- stats: | ok: 1 events 2023-03-16T16:06:15.240Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #6 for non_future/non_fallible event' ended after running for 12.772639ms -- stats: | ok: 1 events 2023-03-16T16:06:15.240Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #7 for non_future/non_fallible event' ended after running for 12.78089ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #8 for non_future/non_fallible event' ended after running for 12.78697ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #9 for non_future/non_fallible event' ended after running for 12.792503ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #10 for non_future/non_fallible event' ended after running for 12.801857ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #11 for non_future/non_fallible event' ended after running for 12.809827ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #12 for non_future/non_fallible event' ended after running for 12.816488ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #13 for non_future/non_fallible event' ended after running for 12.821927ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #14 for non_future/non_fallible event' ended after running for 12.827561ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #15 for non_future/non_fallible event' ended after running for 12.834502ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #16 for non_future/non_fallible event' ended after running for 12.845986ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #17 for non_future/non_fallible event' ended after running for 12.857384ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #18 for non_future/non_fallible event' ended after running for 12.865645ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #19 for non_future/non_fallible event' ended after running for 12.872818ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #20 for non_future/non_fallible event' ended after running for 12.880237ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #21 for non_future/non_fallible event' ended after running for 12.888627ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #22 for non_future/non_fallible event' ended after running for 12.819431ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #23 for non_future/non_fallible event' ended after running for 12.824027ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #24 for non_future/non_fallible event' ended after running for 12.83174ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #25 for non_future/non_fallible event' ended after running for 12.867495ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #26 for non_future/non_fallible event' ended after running for 12.877149ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #27 for non_future/non_fallible event' ended after running for 12.884527ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #28 for non_future/non_fallible event' ended after running for 12.89162ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #29 for non_future/non_fallible event' ended after running for 12.901123ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #30 for non_future/non_fallible event' ended after running for 12.900677ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #31 for non_future/non_fallible event' ended after running for 12.908271ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #32 for non_future/non_fallible event' ended after running for 12.916842ms -- stats: | ok: 1 events 2023-03-16T16:06:15.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #33 for non_future/non_fallible event' ended after running for 12.92398ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #34 for non_future/non_fallible event' ended after running for 12.931243ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #35 for non_future/non_fallible event' ended after running for 12.949503ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #36 for non_future/non_fallible event' ended after running for 12.95853ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #37 for non_future/non_fallible event' ended after running for 12.968937ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #38 for non_future/non_fallible event' ended after running for 12.985683ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #39 for non_future/non_fallible event' ended after running for 12.998966ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #40 for non_future/non_fallible event' ended after running for 13.006119ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #41 for non_future/non_fallible event' ended after running for 13.013497ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #42 for non_future/non_fallible event' ended after running for 13.020575ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #43 for non_future/non_fallible event' ended after running for 13.026289ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #44 for non_future/non_fallible event' ended after running for 13.033697ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #45 for non_future/non_fallible event' ended after running for 13.041236ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #46 for non_future/non_fallible event' ended after running for 13.051352ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #47 for non_future/non_fallible event' ended after running for 13.063211ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #48 for non_future/non_fallible event' ended after running for 13.065071ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #49 for non_future/non_fallible event' ended after running for 13.071531ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #50 for non_future/non_fallible event' ended after running for 13.108714ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #51 for non_future/non_fallible event' ended after running for 13.116182ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #52 for non_future/non_fallible event' ended after running for 13.072659ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #53 for non_future/non_fallible event' ended after running for 13.08508ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #54 for non_future/non_fallible event' ended after running for 13.092969ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #55 for non_future/non_fallible event' ended after running for 13.103566ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #56 for non_future/non_fallible event' ended after running for 13.115225ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #57 for non_future/non_fallible event' ended after running for 13.126427ms -- stats: | ok: 1 events 2023-03-16T16:06:15.242Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #58 for non_future/non_fallible event' ended after running for 13.134197ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #59 for non_future/non_fallible event' ended after running for 13.142508ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #60 for non_future/non_fallible event' ended after running for 13.149144ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #61 for non_future/non_fallible event' ended after running for 10.99512ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #62 for non_future/non_fallible event' ended after running for 10.980278ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #63 for non_future/non_fallible event' ended after running for 10.988088ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #64 for non_future/non_fallible event' ended after running for 10.996975ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #65 for non_future/non_fallible event' ended after running for 11.002924ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #66 for non_future/non_fallible event' ended after running for 11.007821ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #67 for non_future/non_fallible event' ended after running for 11.012708ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #68 for non_future/non_fallible event' ended after running for 11.019962ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #69 for non_future/non_fallible event' ended after running for 11.025611ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #70 for non_future/non_fallible event' ended after running for 11.033705ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #71 for non_future/non_fallible event' ended after running for 11.048984ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #72 for non_future/non_fallible event' ended after running for 11.063534ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #73 for non_future/non_fallible event' ended after running for 11.073935ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #74 for non_future/non_fallible event' ended after running for 11.115058ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #75 for non_future/non_fallible event' ended after running for 11.123383ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #76 for non_future/non_fallible event' ended after running for 11.097138ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #77 for non_future/non_fallible event' ended after running for 11.101744ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #78 for non_future/non_fallible event' ended after running for 11.110011ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #79 for non_future/non_fallible event' ended after running for 11.121463ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #80 for non_future/non_fallible event' ended after running for 11.133373ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #81 for non_future/non_fallible event' ended after running for 11.14194ms -- stats: | ok: 1 events 2023-03-16T16:06:15.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #82 for non_future/non_fallible event' ended after running for 11.149558ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #83 for non_future/non_fallible event' ended after running for 11.154897ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #84 for non_future/non_fallible event' ended after running for 11.148827ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #85 for non_future/non_fallible event' ended after running for 11.155779ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #86 for non_future/non_fallible event' ended after running for 11.163433ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #87 for non_future/non_fallible event' ended after running for 11.172847ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #88 for non_future/non_fallible event' ended after running for 11.184526ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #89 for non_future/non_fallible event' ended after running for 11.204795ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #90 for non_future/non_fallible event' ended after running for 11.212354ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #91 for non_future/non_fallible event' ended after running for 11.218931ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #92 for non_future/non_fallible event' ended after running for 11.226444ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #93 for non_future/non_fallible event' ended after running for 11.23274ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #94 for non_future/non_fallible event' ended after running for 11.239356ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #95 for non_future/non_fallible event' ended after running for 11.246775ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #96 for non_future/non_fallible event' ended after running for 11.257316ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #97 for non_future/non_fallible event' ended after running for 11.269361ms -- stats: | ok: 1 events 2023-03-16T16:06:15.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #98 for non_future/non_fallible event' ended after running for 11.278058ms -- stats: | ok: 1 events 2023-03-16T16:06:15.245Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #99 for non_future/non_fallible event' ended after running for 12.24119ms -- stats: | ok: 1 events 2023-03-16T16:06:15.245Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #100 for non_future/non_fallible event' ended after running for 12.284752ms -- stats: | ok: 1 events 2023-03-16T16:06:15.245Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #101 for non_future/non_fallible event' ended after running for 12.294271ms -- stats: | ok: 1 events 2023-03-16T16:06:15.245Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #102 for non_future/non_fallible event' ended after running for 12.325123ms -- stats: | ok: 1 events 2023-03-16T16:06:15.245Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #103 for non_future/non_fallible event' ended after running for 12.333869ms -- stats: | ok: 1 events 2023-03-16T16:06:15.245Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #104 for non_future/non_fallible event' ended after running for 12.340757ms -- stats: | ok: 1 events 2023-03-16T16:06:15.245Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #105 for non_future/non_fallible event' ended after running for 12.348175ms -- stats: | ok: 1 events 2023-03-16T16:06:15.245Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #106 for non_future/non_fallible event' ended after running for 12.354666ms -- stats: | ok: 1 events 2023-03-16T16:06:15.245Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #107 for non_future/non_fallible event' ended after running for 12.339503ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #108 for non_future/non_fallible event' ended after running for 12.348941ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #109 for non_future/non_fallible event' ended after running for 12.359683ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #110 for non_future/non_fallible event' ended after running for 12.366806ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #111 for non_future/non_fallible event' ended after running for 12.374836ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #112 for non_future/non_fallible event' ended after running for 12.381498ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #113 for non_future/non_fallible event' ended after running for 12.389342ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #114 for non_future/non_fallible event' ended after running for 12.40053ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #115 for non_future/non_fallible event' ended after running for 12.411377ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #116 for non_future/non_fallible event' ended after running for 12.41859ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #117 for non_future/non_fallible event' ended after running for 12.424936ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #118 for non_future/non_fallible event' ended after running for 12.431472ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #119 for non_future/non_fallible event' ended after running for 12.429372ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #120 for non_future/non_fallible event' ended after running for 12.436594ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #121 for non_future/non_fallible event' ended after running for 12.443812ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #122 for non_future/non_fallible event' ended after running for 12.435832ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #123 for non_future/non_fallible event' ended after running for 12.471892ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #124 for non_future/non_fallible event' ended after running for 12.49137ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #125 for non_future/non_fallible event' ended after running for 12.49923ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #126 for non_future/non_fallible event' ended after running for 12.507215ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #127 for non_future/non_fallible event' ended after running for 12.513385ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #128 for non_future/non_fallible event' ended after running for 12.521134ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #129 for non_future/non_fallible event' ended after running for 12.532116ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #130 for non_future/non_fallible event' ended after running for 12.543991ms -- stats: | ok: 1 events 2023-03-16T16:06:15.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #131 for non_future/non_fallible event' ended after running for 12.552397ms -- stats: | ok: 1 events 2023-03-16T16:06:15.247Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #132 for non_future/non_fallible event' ended after running for 12.558598ms -- stats: | ok: 1 events 2023-03-16T16:06:15.247Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #133 for non_future/non_fallible event' ended after running for 12.564793ms -- stats: | ok: 1 events 2023-03-16T16:06:15.247Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #134 for non_future/non_fallible event' ended after running for 12.571148ms -- stats: | ok: 1 events 2023-03-16T16:06:15.247Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #135 for non_future/non_fallible event' ended after running for 12.58008ms -- stats: | ok: 1 events 2023-03-16T16:06:15.247Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #136 for non_future/non_fallible event' ended after running for 12.580978ms -- stats: | ok: 1 events 2023-03-16T16:06:15.247Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #137 for non_future/non_fallible event' ended after running for 13.304926ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #138 for non_future/non_fallible event' ended after running for 13.346328ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #139 for non_future/non_fallible event' ended after running for 13.356855ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #140 for non_future/non_fallible event' ended after running for 13.364835ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #141 for non_future/non_fallible event' ended after running for 13.372162ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #142 for non_future/non_fallible event' ended after running for 13.379816ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #143 for non_future/non_fallible event' ended after running for 13.386769ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #144 for non_future/non_fallible event' ended after running for 13.393847ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #145 for non_future/non_fallible event' ended after running for 13.402403ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #146 for non_future/non_fallible event' ended after running for 13.412994ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #147 for non_future/non_fallible event' ended after running for 13.424302ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #148 for non_future/non_fallible event' ended after running for 13.431661ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #149 for non_future/non_fallible event' ended after running for 13.438889ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #150 for non_future/non_fallible event' ended after running for 13.446608ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #151 for non_future/non_fallible event' ended after running for 13.451816ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #152 for non_future/non_fallible event' ended after running for 13.459459ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #153 for non_future/non_fallible event' ended after running for 13.459795ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #154 for non_future/non_fallible event' ended after running for 13.496482ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #155 for non_future/non_fallible event' ended after running for 13.50816ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #156 for non_future/non_fallible event' ended after running for 13.516632ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #157 for non_future/non_fallible event' ended after running for 13.524015ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #158 for non_future/non_fallible event' ended after running for 13.540395ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #159 for non_future/non_fallible event' ended after running for 13.548686ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #160 for non_future/non_fallible event' ended after running for 13.556466ms -- stats: | ok: 1 events 2023-03-16T16:06:15.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #161 for non_future/non_fallible event' ended after running for 13.564084ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #162 for non_future/non_fallible event' ended after running for 13.573724ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #163 for non_future/non_fallible event' ended after running for 13.584841ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #164 for non_future/non_fallible event' ended after running for 13.596681ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #165 for non_future/non_fallible event' ended after running for 13.60663ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #166 for non_future/non_fallible event' ended after running for 13.616274ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #167 for non_future/non_fallible event' ended after running for 13.658339ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #168 for non_future/non_fallible event' ended after running for 13.666133ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #169 for non_future/non_fallible event' ended after running for 13.645411ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #170 for non_future/non_fallible event' ended after running for 13.645311ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #171 for non_future/non_fallible event' ended after running for 13.655291ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #172 for non_future/non_fallible event' ended after running for 13.664544ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #173 for non_future/non_fallible event' ended after running for 13.671838ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #174 for non_future/non_fallible event' ended after running for 13.67926ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #175 for non_future/non_fallible event' ended after running for 13.693496ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #176 for non_future/non_fallible event' ended after running for 13.701325ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #177 for non_future/non_fallible event' ended after running for 13.729375ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #178 for non_future/non_fallible event' ended after running for 13.742066ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #179 for non_future/non_fallible event' ended after running for 13.750853ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #180 for non_future/non_fallible event' ended after running for 13.759124ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #181 for non_future/non_fallible event' ended after running for 13.766623ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #182 for non_future/non_fallible event' ended after running for 13.774918ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #183 for non_future/non_fallible event' ended after running for 13.763074ms -- stats: | ok: 1 events 2023-03-16T16:06:15.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #184 for non_future/non_fallible event' ended after running for 13.766247ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #185 for non_future/non_fallible event' ended after running for 13.772271ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #186 for non_future/non_fallible event' ended after running for 13.781319ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #187 for non_future/non_fallible event' ended after running for 13.784536ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #188 for non_future/non_fallible event' ended after running for 13.793875ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #189 for non_future/non_fallible event' ended after running for 13.800852ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #190 for non_future/non_fallible event' ended after running for 13.808381ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #191 for non_future/non_fallible event' ended after running for 13.815444ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #192 for non_future/non_fallible event' ended after running for 13.829193ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #193 for non_future/non_fallible event' ended after running for 13.837047ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #194 for non_future/non_fallible event' ended after running for 13.844216ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #195 for non_future/non_fallible event' ended after running for 13.855022ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #196 for non_future/non_fallible event' ended after running for 13.8665ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #197 for non_future/non_fallible event' ended after running for 13.873959ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #198 for non_future/non_fallible event' ended after running for 13.853403ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #199 for non_future/non_fallible event' ended after running for 13.859794ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #200 for non_future/non_fallible event' ended after running for 13.868541ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #201 for non_future/non_fallible event' ended after running for 13.907247ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #202 for non_future/non_fallible event' ended after running for 13.925051ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #203 for non_future/non_fallible event' ended after running for 13.937903ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #204 for non_future/non_fallible event' ended after running for 13.941251ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #205 for non_future/non_fallible event' ended after running for 13.949371ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #206 for non_future/non_fallible event' ended after running for 13.957241ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #207 for non_future/non_fallible event' ended after running for 13.964188ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #208 for non_future/non_fallible event' ended after running for 13.971301ms -- stats: | ok: 1 events 2023-03-16T16:06:15.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #209 for non_future/non_fallible event' ended after running for 13.989165ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #210 for non_future/non_fallible event' ended after running for 13.996258ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #211 for non_future/non_fallible event' ended after running for 14.005987ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #212 for non_future/non_fallible event' ended after running for 14.017726ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #213 for non_future/non_fallible event' ended after running for 14.0274ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #214 for non_future/non_fallible event' ended after running for 14.034793ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #215 for non_future/non_fallible event' ended after running for 14.041044ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #216 for non_future/non_fallible event' ended after running for 14.048021ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #217 for non_future/non_fallible event' ended after running for 14.05568ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #218 for non_future/non_fallible event' ended after running for 14.062202ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #219 for non_future/non_fallible event' ended after running for 14.070202ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #220 for non_future/non_fallible event' ended after running for 14.081063ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #221 for non_future/non_fallible event' ended after running for 14.084156ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #222 for non_future/non_fallible event' ended after running for 14.091539ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #223 for non_future/non_fallible event' ended after running for 14.099303ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #224 for non_future/non_fallible event' ended after running for 14.107002ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #225 for non_future/non_fallible event' ended after running for 14.114632ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #226 for non_future/non_fallible event' ended after running for 14.174906ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #227 for non_future/non_fallible event' ended after running for 14.185006ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #228 for non_future/non_fallible event' ended after running for 14.193142ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #229 for non_future/non_fallible event' ended after running for 14.204229ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #230 for non_future/non_fallible event' ended after running for 14.190806ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #231 for non_future/non_fallible event' ended after running for 14.199637ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #232 for non_future/non_fallible event' ended after running for 14.207408ms -- stats: | ok: 1 events 2023-03-16T16:06:15.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #233 for non_future/non_fallible event' ended after running for 14.214489ms -- stats: | ok: 1 events 2023-03-16T16:06:15.252Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #234 for non_future/non_fallible event' ended after running for 14.221306ms -- stats: | ok: 1 events 2023-03-16T16:06:15.252Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #235 for non_future/non_fallible event' ended after running for 14.22881ms -- stats: | ok: 1 events 2023-03-16T16:06:15.252Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #236 for non_future/non_fallible event' ended after running for 14.239161ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #237 for non_future/non_fallible event' ended after running for 15.344165ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #238 for non_future/non_fallible event' ended after running for 15.375999ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #239 for non_future/non_fallible event' ended after running for 15.386816ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #240 for non_future/non_fallible event' ended after running for 15.396054ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #241 for non_future/non_fallible event' ended after running for 15.402626ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #242 for non_future/non_fallible event' ended after running for 15.410891ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #243 for non_future/non_fallible event' ended after running for 15.419101ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #244 for non_future/non_fallible event' ended after running for 15.399703ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #245 for non_future/non_fallible event' ended after running for 15.405302ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #246 for non_future/non_fallible event' ended after running for 15.443878ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #247 for non_future/non_fallible event' ended after running for 15.452128ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #248 for non_future/non_fallible event' ended after running for 15.460384ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #249 for non_future/non_fallible event' ended after running for 15.467101ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #250 for non_future/non_fallible event' ended after running for 15.474769ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #251 for non_future/non_fallible event' ended after running for 15.481937ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #252 for non_future/non_fallible event' ended after running for 15.488719ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #253 for non_future/non_fallible event' ended after running for 15.495586ms -- stats: | ok: 1 events 2023-03-16T16:06:15.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #254 for non_future/non_fallible event' ended after running for 15.503471ms -- stats: | ok: 1 events 2023-03-16T16:06:15.254Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #255 for non_future/non_fallible event' ended after running for 15.502363ms -- stats: | ok: 1 events 2023-03-16T16:06:15.263Z 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-16T16:06:15.263Z 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-16T16:06:15.263Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.264Z 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-16T16:06:15.265Z 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-16T16:06:15.265Z 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-16T16:06:15.265Z 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-16T16:06:15.265Z 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-16T16:06:15.265Z 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-16T16:06:15.265Z 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-16T16:06:15.265Z 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-16T16:06:15.265Z 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-16T16:06:15.265Z 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-16T16:06:15.265Z 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-16T16:06:15.265Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.266Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.269Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.270Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.271Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.272Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.273Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.274Z 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-16T16:06:15.275Z 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-16T16:06:15.275Z 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-16T16:06:15.275Z 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-16T16:06:15.275Z 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-16T16:06:15.275Z 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-16T16:06:15.275Z 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-16T16:06:15.275Z 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-16T16:06:15.275Z 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-16T16:06:15.275Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.276Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.277Z 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-16T16:06:15.423Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #122 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.150164ms 2023-03-16T16:06:15.423Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #123 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.322466ms 2023-03-16T16:06:15.423Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #124 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.421422ms 2023-03-16T16:06:15.423Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #125 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.742765ms 2023-03-16T16:06:15.423Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #126 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.84324ms 2023-03-16T16:06:15.423Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #127 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.929479ms 2023-03-16T16:06:15.424Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #128 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.157552ms 2023-03-16T16:06:15.424Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #129 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.486639ms 2023-03-16T16:06:15.424Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #130 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.587249ms 2023-03-16T16:06:15.424Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #131 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.673909ms 2023-03-16T16:06:15.425Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #132 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.762324ms 2023-03-16T16:06:15.425Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #133 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.850708ms 2023-03-16T16:06:15.425Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #134 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.936171ms 2023-03-16T16:06:15.425Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #135 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.021347ms 2023-03-16T16:06:15.426Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #136 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.533185ms 2023-03-16T16:06:15.426Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #137 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.679278ms 2023-03-16T16:06:15.426Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #138 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.781496ms 2023-03-16T16:06:15.426Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #139 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.876121ms 2023-03-16T16:06:15.426Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #140 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.969629ms 2023-03-16T16:06:15.426Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #141 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.060885ms 2023-03-16T16:06:15.426Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #142 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.237283ms 2023-03-16T16:06:15.426Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #143 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.336229ms 2023-03-16T16:06:15.426Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #144 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.428714ms 2023-03-16T16:06:15.427Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #145 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.514757ms 2023-03-16T16:06:15.427Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #146 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.608976ms 2023-03-16T16:06:15.427Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #147 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.705737ms 2023-03-16T16:06:15.427Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #148 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.799499ms 2023-03-16T16:06:15.427Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #149 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.88832ms 2023-03-16T16:06:15.427Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #150 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.977717ms 2023-03-16T16:06:15.427Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #151 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.127208ms 2023-03-16T16:06:15.427Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #152 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.228685ms 2023-03-16T16:06:15.427Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #153 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.326127ms 2023-03-16T16:06:15.428Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #154 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.419414ms 2023-03-16T16:06:15.428Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #155 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.505392ms 2023-03-16T16:06:15.428Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #156 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.568384ms 2023-03-16T16:06:15.428Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #157 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.65533ms 2023-03-16T16:06:15.428Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #158 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.751744ms 2023-03-16T16:06:15.428Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #159 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.843216ms 2023-03-16T16:06:15.428Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #160 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.85872ms 2023-03-16T16:06:15.428Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #161 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.948849ms 2023-03-16T16:06:15.428Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #162 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.041353ms 2023-03-16T16:06:15.429Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #163 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.135357ms 2023-03-16T16:06:15.429Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #164 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.232072ms 2023-03-16T16:06:15.429Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #165 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.329865ms 2023-03-16T16:06:15.429Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #166 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.424189ms 2023-03-16T16:06:15.429Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #167 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.517541ms 2023-03-16T16:06:15.429Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #168 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.605695ms 2023-03-16T16:06:15.429Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #169 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.695157ms 2023-03-16T16:06:15.429Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #170 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.845556ms 2023-03-16T16:06:15.429Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #171 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.941945ms 2023-03-16T16:06:15.429Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #172 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.035317ms 2023-03-16T16:06:15.430Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #173 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.128989ms 2023-03-16T16:06:15.430Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #174 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.222046ms 2023-03-16T16:06:15.430Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #175 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.317162ms 2023-03-16T16:06:15.430Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #176 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.410017ms 2023-03-16T16:06:15.430Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #177 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.497966ms 2023-03-16T16:06:15.430Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #178 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.606846ms 2023-03-16T16:06:15.430Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #179 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.745084ms 2023-03-16T16:06:15.430Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #180 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.834557ms 2023-03-16T16:06:15.430Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #181 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.925122ms 2023-03-16T16:06:15.431Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #182 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.018889ms 2023-03-16T16:06:15.431Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #183 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.318234ms 2023-03-16T16:06:15.431Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #184 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.427431ms 2023-03-16T16:06:15.431Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #185 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.581583ms 2023-03-16T16:06:15.431Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #186 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.681832ms 2023-03-16T16:06:15.431Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #187 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.777204ms 2023-03-16T16:06:15.432Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #188 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.871072ms 2023-03-16T16:06:15.432Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #189 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.964615ms 2023-03-16T16:06:15.432Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #190 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.067029ms 2023-03-16T16:06:15.432Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #191 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.156842ms 2023-03-16T16:06:15.432Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #192 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.242856ms 2023-03-16T16:06:15.432Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #193 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.328052ms 2023-03-16T16:06:15.432Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #194 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.415955ms 2023-03-16T16:06:15.432Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #195 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.570234ms 2023-03-16T16:06:15.432Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #196 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.65935ms 2023-03-16T16:06:15.432Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #197 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.747469ms 2023-03-16T16:06:15.433Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #198 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.832475ms 2023-03-16T16:06:15.433Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #199 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.918584ms 2023-03-16T16:06:15.433Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #200 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.001169ms 2023-03-16T16:06:15.433Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #201 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.086801ms 2023-03-16T16:06:15.433Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #202 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.174153ms 2023-03-16T16:06:15.433Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #203 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.264593ms 2023-03-16T16:06:15.433Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #204 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.358606ms 2023-03-16T16:06:15.433Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #205 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.368578ms 2023-03-16T16:06:15.433Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #206 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.4621ms 2023-03-16T16:06:15.433Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #207 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.558565ms 2023-03-16T16:06:15.434Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #208 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.651967ms 2023-03-16T16:06:15.434Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #209 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.74581ms 2023-03-16T16:06:15.434Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #210 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.839527ms 2023-03-16T16:06:15.434Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #211 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.93542ms 2023-03-16T16:06:15.434Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #212 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.026176ms 2023-03-16T16:06:15.434Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #213 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.119006ms 2023-03-16T16:06:15.434Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #214 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.278041ms 2023-03-16T16:06:15.434Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #215 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.378912ms 2023-03-16T16:06:15.434Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #216 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.473051ms 2023-03-16T16:06:15.435Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #217 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.569014ms 2023-03-16T16:06:15.435Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #218 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.925945ms 2023-03-16T16:06:15.435Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #219 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.053287ms 2023-03-16T16:06:15.435Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #220 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.990095ms 2023-03-16T16:06:15.435Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #221 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.09297ms 2023-03-16T16:06:15.435Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #222 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.187725ms 2023-03-16T16:06:15.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #223 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.285934ms 2023-03-16T16:06:15.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #224 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.379376ms 2023-03-16T16:06:15.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #225 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.469555ms 2023-03-16T16:06:15.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #226 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.56019ms 2023-03-16T16:06:15.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #227 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.646264ms 2023-03-16T16:06:15.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #228 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.732263ms 2023-03-16T16:06:15.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #229 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.820858ms 2023-03-16T16:06:15.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #230 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.96676ms 2023-03-16T16:06:15.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #231 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.055611ms 2023-03-16T16:06:15.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #232 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.165042ms 2023-03-16T16:06:15.437Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #233 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.25054ms 2023-03-16T16:06:15.437Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #234 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.336373ms 2023-03-16T16:06:15.437Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #235 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.424622ms 2023-03-16T16:06:15.437Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #236 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.51251ms 2023-03-16T16:06:15.437Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #237 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.595331ms 2023-03-16T16:06:15.437Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #238 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.684081ms 2023-03-16T16:06:15.437Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #239 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.769168ms 2023-03-16T16:06:15.437Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #240 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.903226ms 2023-03-16T16:06:15.437Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #241 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.991695ms 2023-03-16T16:06:15.437Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #242 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.080195ms 2023-03-16T16:06:15.438Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #243 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.165793ms 2023-03-16T16:06:15.438Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #244 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.37213ms 2023-03-16T16:06:15.438Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #245 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.464454ms 2023-03-16T16:06:15.438Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #246 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.373766ms 2023-03-16T16:06:15.438Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #247 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.456055ms 2023-03-16T16:06:15.438Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #248 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.546695ms 2023-03-16T16:06:15.438Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #249 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.681325ms 2023-03-16T16:06:15.438Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #250 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.787428ms 2023-03-16T16:06:15.438Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #251 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.876399ms 2023-03-16T16:06:15.439Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #252 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.970989ms 2023-03-16T16:06:15.439Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #253 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.065784ms 2023-03-16T16:06:15.439Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #254 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.16484ms 2023-03-16T16:06:15.439Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #255 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.258277ms 2023-03-16T16:06:15.439Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #0 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.35202ms 2023-03-16T16:06:15.439Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #1 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.449131ms 2023-03-16T16:06:15.439Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #2 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.685057ms 2023-03-16T16:06:15.439Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #3 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.786098ms 2023-03-16T16:06:15.440Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #4 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.882227ms 2023-03-16T16:06:15.440Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #5 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.976371ms 2023-03-16T16:06:15.440Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #6 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.073432ms 2023-03-16T16:06:15.440Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #7 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.167776ms 2023-03-16T16:06:15.440Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #8 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.263298ms 2023-03-16T16:06:15.440Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #9 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.360124ms 2023-03-16T16:06:15.440Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #10 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.48964ms 2023-03-16T16:06:15.440Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #11 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.59236ms 2023-03-16T16:06:15.440Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #12 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.709296ms 2023-03-16T16:06:15.441Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #13 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.806983ms 2023-03-16T16:06:15.441Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #14 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.904044ms 2023-03-16T16:06:15.441Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #15 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.997632ms 2023-03-16T16:06:15.441Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #16 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.091089ms 2023-03-16T16:06:15.441Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #17 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.187644ms 2023-03-16T16:06:15.441Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #18 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.284013ms 2023-03-16T16:06:15.441Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #19 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.377425ms 2023-03-16T16:06:15.441Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #20 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.515638ms 2023-03-16T16:06:15.441Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #21 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.612148ms 2023-03-16T16:06:15.441Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #22 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.706156ms 2023-03-16T16:06:15.442Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #23 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.800205ms 2023-03-16T16:06:15.442Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #24 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.894464ms 2023-03-16T16:06:15.442Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #25 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.993861ms 2023-03-16T16:06:15.442Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #26 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.095363ms 2023-03-16T16:06:15.442Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #27 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.189131ms 2023-03-16T16:06:15.442Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #28 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.284101ms 2023-03-16T16:06:15.442Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #29 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.447016ms 2023-03-16T16:06:15.442Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #30 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.549646ms 2023-03-16T16:06:15.442Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #31 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.64986ms 2023-03-16T16:06:15.443Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #32 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.748129ms 2023-03-16T16:06:15.443Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #33 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.842548ms 2023-03-16T16:06:15.443Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #34 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.94188ms 2023-03-16T16:06:15.443Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #35 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.039202ms 2023-03-16T16:06:15.443Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #36 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.136463ms 2023-03-16T16:06:15.443Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #37 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.230527ms 2023-03-16T16:06:15.443Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #38 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.379311ms 2023-03-16T16:06:15.443Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #39 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.474257ms 2023-03-16T16:06:15.443Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #40 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.571689ms 2023-03-16T16:06:15.444Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #41 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.665422ms 2023-03-16T16:06:15.444Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #42 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.762247ms 2023-03-16T16:06:15.444Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #43 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.858491ms 2023-03-16T16:06:15.444Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #44 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.952976ms 2023-03-16T16:06:15.444Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #45 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.04716ms 2023-03-16T16:06:15.444Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #46 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.13563ms 2023-03-16T16:06:15.444Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #47 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.273341ms 2023-03-16T16:06:15.444Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #48 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.396161ms 2023-03-16T16:06:15.445Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #49 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.613852ms 2023-03-16T16:06:15.445Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #50 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.705996ms 2023-03-16T16:06:15.445Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #51 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.781448ms 2023-03-16T16:06:15.445Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #52 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.866264ms 2023-03-16T16:06:15.445Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #53 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.952328ms 2023-03-16T16:06:15.445Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #54 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.038191ms 2023-03-16T16:06:15.445Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #55 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.12642ms 2023-03-16T16:06:15.445Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #56 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.265094ms 2023-03-16T16:06:15.445Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #57 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.359815ms 2023-03-16T16:06:15.445Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #58 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.445793ms 2023-03-16T16:06:15.446Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #59 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.534017ms 2023-03-16T16:06:15.446Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #60 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.619625ms 2023-03-16T16:06:15.446Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #61 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.704541ms 2023-03-16T16:06:15.446Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #62 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.790143ms 2023-03-16T16:06:15.446Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #63 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.875079ms 2023-03-16T16:06:15.446Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #64 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.960877ms 2023-03-16T16:06:15.446Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #65 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.045663ms 2023-03-16T16:06:15.446Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #66 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.19557ms 2023-03-16T16:06:15.446Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #67 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.287719ms 2023-03-16T16:06:15.446Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #68 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.375923ms 2023-03-16T16:06:15.447Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #69 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.464849ms 2023-03-16T16:06:15.447Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #70 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.551273ms 2023-03-16T16:06:15.447Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #71 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.636665ms 2023-03-16T16:06:15.447Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #72 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.724824ms 2023-03-16T16:06:15.447Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #73 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.810988ms 2023-03-16T16:06:15.447Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #74 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.896421ms 2023-03-16T16:06:15.447Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #75 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.984359ms 2023-03-16T16:06:15.447Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #76 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.117414ms 2023-03-16T16:06:15.447Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #77 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.209929ms 2023-03-16T16:06:15.447Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #78 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.299892ms 2023-03-16T16:06:15.448Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #79 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.338037ms 2023-03-16T16:06:15.448Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #80 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.420452ms 2023-03-16T16:06:15.448Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #81 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.505779ms 2023-03-16T16:06:15.448Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #82 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.590574ms 2023-03-16T16:06:15.448Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #83 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.676302ms 2023-03-16T16:06:15.448Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #84 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.781438ms 2023-03-16T16:06:15.448Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #85 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.869743ms 2023-03-16T16:06:15.448Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #86 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.011194ms 2023-03-16T16:06:15.448Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #87 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.099684ms 2023-03-16T16:06:15.448Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #88 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.18894ms 2023-03-16T16:06:15.449Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #89 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.274824ms 2023-03-16T16:06:15.449Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #90 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.363018ms 2023-03-16T16:06:15.449Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #91 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.448936ms 2023-03-16T16:06:15.449Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #92 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.534629ms 2023-03-16T16:06:15.449Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #93 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.620076ms 2023-03-16T16:06:15.449Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #94 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.708125ms 2023-03-16T16:06:15.449Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #95 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.796083ms 2023-03-16T16:06:15.449Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #96 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.935274ms 2023-03-16T16:06:15.449Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #97 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.036445ms 2023-03-16T16:06:15.449Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #98 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.130659ms 2023-03-16T16:06:15.450Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #99 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.224943ms 2023-03-16T16:06:15.450Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #100 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.318816ms 2023-03-16T16:06:15.450Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #101 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.415977ms 2023-03-16T16:06:15.450Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #102 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.534166ms 2023-03-16T16:06:15.450Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #103 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.628069ms 2023-03-16T16:06:15.450Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #104 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.722007ms 2023-03-16T16:06:15.450Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #105 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.859499ms 2023-03-16T16:06:15.450Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #106 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.956149ms 2023-03-16T16:06:15.450Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #107 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.050523ms 2023-03-16T16:06:15.451Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #108 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.147133ms 2023-03-16T16:06:15.451Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #109 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.241558ms 2023-03-16T16:06:15.451Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #110 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.461975ms 2023-03-16T16:06:15.451Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #111 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.564099ms 2023-03-16T16:06:15.451Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #112 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.648558ms 2023-03-16T16:06:15.451Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #113 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.78606ms 2023-03-16T16:06:15.451Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #114 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.887798ms 2023-03-16T16:06:15.451Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #115 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.984643ms 2023-03-16T16:06:15.452Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #116 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.078767ms 2023-03-16T16:06:15.452Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #117 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.176149ms 2023-03-16T16:06:15.452Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #118 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.269741ms 2023-03-16T16:06:15.452Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #119 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.363504ms 2023-03-16T16:06:15.452Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #120 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.479858ms 2023-03-16T16:06:15.452Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #121 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.576989ms 2023-03-16T16:06:15.574Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #122 for future & fallible event' TIMED OUT after 150.738156ms 2023-03-16T16:06:15.574Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #123 for future & fallible event' TIMED OUT after 150.790842ms 2023-03-16T16:06:15.575Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #124 for future & fallible event' TIMED OUT after 151.822599ms 2023-03-16T16:06:15.575Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #125 for future & fallible event' TIMED OUT after 151.944236ms 2023-03-16T16:06:15.576Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #126 for future & fallible event' TIMED OUT after 152.070981ms 2023-03-16T16:06:15.576Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #127 for future & fallible event' TIMED OUT after 152.079502ms 2023-03-16T16:06:15.576Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #128 for future & fallible event' TIMED OUT after 151.848839ms 2023-03-16T16:06:15.576Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #129 for future & fallible event' TIMED OUT after 152.054645ms 2023-03-16T16:06:15.577Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #130 for future & fallible event' TIMED OUT after 152.06061ms 2023-03-16T16:06:15.577Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #131 for future & fallible event' TIMED OUT after 152.050726ms 2023-03-16T16:06:15.577Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #132 for future & fallible event' TIMED OUT after 152.035683ms 2023-03-16T16:06:15.577Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #133 for future & fallible event' TIMED OUT after 152.020375ms 2023-03-16T16:06:15.577Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #134 for future & fallible event' TIMED OUT after 152.004546ms 2023-03-16T16:06:15.577Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #135 for future & fallible event' TIMED OUT after 151.991178ms 2023-03-16T16:06:15.577Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #136 for future & fallible event' TIMED OUT after 151.334226ms 2023-03-16T16:06:15.577Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #137 for future & fallible event' TIMED OUT after 151.303034ms 2023-03-16T16:06:15.577Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #138 for future & fallible event' TIMED OUT after 151.346938ms 2023-03-16T16:06:15.578Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #139 for future & fallible event' TIMED OUT after 151.618868ms 2023-03-16T16:06:15.578Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #140 for future & fallible event' TIMED OUT after 151.607049ms 2023-03-16T16:06:15.578Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #141 for future & fallible event' TIMED OUT after 151.513461ms 2023-03-16T16:06:15.578Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #142 for future & fallible event' TIMED OUT after 151.484038ms 2023-03-16T16:06:15.578Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #143 for future & fallible event' TIMED OUT after 151.475798ms 2023-03-16T16:06:15.578Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #144 for future & fallible event' TIMED OUT after 151.64373ms 2023-03-16T16:06:15.578Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #145 for future & fallible event' TIMED OUT after 151.638843ms 2023-03-16T16:06:15.578Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #146 for future & fallible event' TIMED OUT after 151.618733ms 2023-03-16T16:06:15.578Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #147 for future & fallible event' TIMED OUT after 151.594212ms 2023-03-16T16:06:15.579Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #148 for future & fallible event' TIMED OUT after 151.578002ms 2023-03-16T16:06:15.579Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #149 for future & fallible event' TIMED OUT after 152.203345ms 2023-03-16T16:06:15.579Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #150 for future & fallible event' TIMED OUT after 152.181275ms 2023-03-16T16:06:15.579Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #151 for future & fallible event' TIMED OUT after 152.154995ms 2023-03-16T16:06:15.580Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #152 for future & fallible event' TIMED OUT after 152.139601ms 2023-03-16T16:06:15.580Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #153 for future & fallible event' TIMED OUT after 152.127371ms 2023-03-16T16:06:15.580Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #154 for future & fallible event' TIMED OUT after 152.250813ms 2023-03-16T16:06:15.580Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #155 for future & fallible event' TIMED OUT after 152.256577ms 2023-03-16T16:06:15.580Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #156 for future & fallible event' TIMED OUT after 152.231013ms 2023-03-16T16:06:15.580Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #157 for future & fallible event' TIMED OUT after 152.209811ms 2023-03-16T16:06:15.580Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #158 for future & fallible event' TIMED OUT after 152.339357ms 2023-03-16T16:06:15.580Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #159 for future & fallible event' TIMED OUT after 152.248853ms 2023-03-16T16:06:15.581Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #160 for future & fallible event' TIMED OUT after 152.225249ms 2023-03-16T16:06:15.581Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #161 for future & fallible event' TIMED OUT after 152.216698ms 2023-03-16T16:06:15.581Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #162 for future & fallible event' TIMED OUT after 152.31ms 2023-03-16T16:06:15.581Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #163 for future & fallible event' TIMED OUT after 152.301674ms 2023-03-16T16:06:15.581Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #164 for future & fallible event' TIMED OUT after 152.276937ms 2023-03-16T16:06:15.581Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #165 for future & fallible event' TIMED OUT after 152.254361ms 2023-03-16T16:06:15.581Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #166 for future & fallible event' TIMED OUT after 152.281519ms 2023-03-16T16:06:15.582Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #167 for future & fallible event' TIMED OUT after 152.83353ms 2023-03-16T16:06:15.582Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #168 for future & fallible event' TIMED OUT after 152.857013ms 2023-03-16T16:06:15.582Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #169 for future & fallible event' TIMED OUT after 152.784017ms 2023-03-16T16:06:15.582Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #170 for future & fallible event' TIMED OUT after 152.768588ms 2023-03-16T16:06:15.583Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #171 for future & fallible event' TIMED OUT after 153.06327ms 2023-03-16T16:06:15.583Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #172 for future & fallible event' TIMED OUT after 153.056619ms 2023-03-16T16:06:15.583Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #173 for future & fallible event' TIMED OUT after 153.047882ms 2023-03-16T16:06:15.583Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #174 for future & fallible event' TIMED OUT after 153.719189ms 2023-03-16T16:06:15.584Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #175 for future & fallible event' TIMED OUT after 153.73156ms 2023-03-16T16:06:15.584Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #176 for future & fallible event' TIMED OUT after 153.732171ms 2023-03-16T16:06:15.584Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #177 for future & fallible event' TIMED OUT after 153.805047ms 2023-03-16T16:06:15.584Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #178 for future & fallible event' TIMED OUT after 153.814005ms 2023-03-16T16:06:15.584Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #179 for future & fallible event' TIMED OUT after 153.92511ms 2023-03-16T16:06:15.584Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #180 for future & fallible event' TIMED OUT after 154.055013ms 2023-03-16T16:06:15.585Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #181 for future & fallible event' TIMED OUT after 154.047489ms 2023-03-16T16:06:15.585Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #182 for future & fallible event' TIMED OUT after 154.112882ms 2023-03-16T16:06:15.585Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #183 for future & fallible event' TIMED OUT after 154.034723ms 2023-03-16T16:06:15.585Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #184 for future & fallible event' TIMED OUT after 154.027565ms 2023-03-16T16:06:15.585Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #185 for future & fallible event' TIMED OUT after 154.007049ms 2023-03-16T16:06:15.585Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #186 for future & fallible event' TIMED OUT after 153.982067ms 2023-03-16T16:06:15.585Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #187 for future & fallible event' TIMED OUT after 153.961701ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #188 for future & fallible event' TIMED OUT after 153.94322ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #189 for future & fallible event' TIMED OUT after 153.91473ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #190 for future & fallible event' TIMED OUT after 153.89072ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #191 for future & fallible event' TIMED OUT after 153.874685ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #192 for future & fallible event' TIMED OUT after 153.86466ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #193 for future & fallible event' TIMED OUT after 153.846946ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #194 for future & fallible event' TIMED OUT after 153.76798ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #195 for future & fallible event' TIMED OUT after 153.746111ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #196 for future & fallible event' TIMED OUT after 153.782105ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #197 for future & fallible event' TIMED OUT after 153.770356ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #198 for future & fallible event' TIMED OUT after 153.760933ms 2023-03-16T16:06:15.586Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #199 for future & fallible event' TIMED OUT after 153.746427ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #200 for future & fallible event' TIMED OUT after 153.73384ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #201 for future & fallible event' TIMED OUT after 153.749299ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #202 for future & fallible event' TIMED OUT after 153.732993ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #203 for future & fallible event' TIMED OUT after 153.709841ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #204 for future & fallible event' TIMED OUT after 153.635907ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #205 for future & fallible event' TIMED OUT after 153.611943ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #206 for future & fallible event' TIMED OUT after 153.588249ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #207 for future & fallible event' TIMED OUT after 153.56435ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #208 for future & fallible event' TIMED OUT after 153.595622ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #209 for future & fallible event' TIMED OUT after 153.573171ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #210 for future & fallible event' TIMED OUT after 153.552746ms 2023-03-16T16:06:15.587Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #211 for future & fallible event' TIMED OUT after 153.535338ms 2023-03-16T16:06:15.588Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #212 for future & fallible event' TIMED OUT after 153.925717ms 2023-03-16T16:06:15.588Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #213 for future & fallible event' TIMED OUT after 153.869402ms 2023-03-16T16:06:15.588Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #214 for future & fallible event' TIMED OUT after 153.915582ms 2023-03-16T16:06:15.588Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #215 for future & fallible event' TIMED OUT after 153.895261ms 2023-03-16T16:06:15.588Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #216 for future & fallible event' TIMED OUT after 153.87475ms 2023-03-16T16:06:15.588Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #217 for future & fallible event' TIMED OUT after 153.850981ms 2023-03-16T16:06:15.589Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #218 for future & fallible event' TIMED OUT after 153.542555ms 2023-03-16T16:06:15.589Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #219 for future & fallible event' TIMED OUT after 153.510867ms 2023-03-16T16:06:15.589Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #220 for future & fallible event' TIMED OUT after 153.430457ms 2023-03-16T16:06:15.589Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #221 for future & fallible event' TIMED OUT after 153.406242ms 2023-03-16T16:06:15.589Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #222 for future & fallible event' TIMED OUT after 153.402453ms 2023-03-16T16:06:15.589Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #223 for future & fallible event' TIMED OUT after 153.381826ms 2023-03-16T16:06:15.589Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #224 for future & fallible event' TIMED OUT after 153.36099ms 2023-03-16T16:06:15.589Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #225 for future & fallible event' TIMED OUT after 153.388663ms 2023-03-16T16:06:15.589Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #226 for future & fallible event' TIMED OUT after 153.407124ms 2023-03-16T16:06:15.591Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #227 for future & fallible event' TIMED OUT after 154.837546ms 2023-03-16T16:06:15.591Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #228 for future & fallible event' TIMED OUT after 154.857706ms 2023-03-16T16:06:15.591Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #229 for future & fallible event' TIMED OUT after 154.791823ms 2023-03-16T16:06:15.591Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #230 for future & fallible event' TIMED OUT after 154.799542ms 2023-03-16T16:06:15.591Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #231 for future & fallible event' TIMED OUT after 154.934602ms 2023-03-16T16:06:15.591Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #232 for future & fallible event' TIMED OUT after 154.926552ms 2023-03-16T16:06:15.592Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #233 for future & fallible event' TIMED OUT after 154.911791ms 2023-03-16T16:06:15.592Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #234 for future & fallible event' TIMED OUT after 154.899385ms 2023-03-16T16:06:15.592Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #235 for future & fallible event' TIMED OUT after 154.886839ms 2023-03-16T16:06:15.592Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #236 for future & fallible event' TIMED OUT after 154.874473ms 2023-03-16T16:06:15.592Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #7 for future & fallible event' TIMED OUT after 152.290035ms 2023-03-16T16:06:15.592Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #8 for future & fallible event' TIMED OUT after 152.302506ms 2023-03-16T16:06:15.592Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #9 for future & fallible event' TIMED OUT after 152.283033ms 2023-03-16T16:06:15.592Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #10 for future & fallible event' TIMED OUT after 152.218282ms 2023-03-16T16:06:15.593Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #11 for future & fallible event' TIMED OUT after 152.174082ms 2023-03-16T16:06:15.593Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #12 for future & fallible event' TIMED OUT after 152.149326ms 2023-03-16T16:06:15.593Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #13 for future & fallible event' TIMED OUT after 152.122409ms 2023-03-16T16:06:15.593Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #14 for future & fallible event' TIMED OUT after 152.100379ms 2023-03-16T16:06:15.593Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #15 for future & fallible event' TIMED OUT after 152.077542ms 2023-03-16T16:06:15.593Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #237 for future & fallible event' TIMED OUT after 156.003863ms 2023-03-16T16:06:15.593Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #238 for future & fallible event' TIMED OUT after 155.991322ms 2023-03-16T16:06:15.593Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #239 for future & fallible event' TIMED OUT after 155.978049ms 2023-03-16T16:06:15.593Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #240 for future & fallible event' TIMED OUT after 155.968089ms 2023-03-16T16:06:15.593Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #241 for future & fallible event' TIMED OUT after 155.955142ms 2023-03-16T16:06:15.593Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #242 for future & fallible event' TIMED OUT after 155.967613ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #243 for future & fallible event' TIMED OUT after 155.952831ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #244 for future & fallible event' TIMED OUT after 155.815781ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #245 for future & fallible event' TIMED OUT after 155.802528ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #246 for future & fallible event' TIMED OUT after 155.784834ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #247 for future & fallible event' TIMED OUT after 155.771962ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #248 for future & fallible event' TIMED OUT after 155.71069ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #249 for future & fallible event' TIMED OUT after 155.671893ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #250 for future & fallible event' TIMED OUT after 155.658535ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #251 for future & fallible event' TIMED OUT after 155.682189ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #252 for future & fallible event' TIMED OUT after 155.661107ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #253 for future & fallible event' TIMED OUT after 155.64035ms 2023-03-16T16:06:15.594Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #254 for future & fallible event' TIMED OUT after 155.617393ms 2023-03-16T16:06:15.595Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #255 for future & fallible event' TIMED OUT after 155.59396ms 2023-03-16T16:06:15.595Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #0 for future & fallible event' TIMED OUT after 155.569895ms 2023-03-16T16:06:15.595Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #1 for future & fallible event' TIMED OUT after 155.412574ms 2023-03-16T16:06:15.595Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #2 for future & fallible event' TIMED OUT after 155.379592ms 2023-03-16T16:06:15.595Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #3 for future & fallible event' TIMED OUT after 155.357899ms 2023-03-16T16:06:15.595Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #4 for future & fallible event' TIMED OUT after 155.331403ms 2023-03-16T16:06:15.595Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #5 for future & fallible event' TIMED OUT after 155.310691ms 2023-03-16T16:06:15.595Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #6 for future & fallible event' TIMED OUT after 155.283048ms 2023-03-16T16:06:15.595Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #16 for future & fallible event' TIMED OUT after 154.338307ms 2023-03-16T16:06:15.595Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #26 for future & fallible event' TIMED OUT after 153.510401ms 2023-03-16T16:06:15.596Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #33 for future & fallible event' TIMED OUT after 152.894035ms 2023-03-16T16:06:15.596Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #34 for future & fallible event' TIMED OUT after 152.8781ms 2023-03-16T16:06:15.596Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #35 for future & fallible event' TIMED OUT after 152.854391ms 2023-03-16T16:06:15.596Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #36 for future & fallible event' TIMED OUT after 152.833444ms 2023-03-16T16:06:15.596Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #37 for future & fallible event' TIMED OUT after 152.761305ms 2023-03-16T16:06:15.596Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #38 for future & fallible event' TIMED OUT after 152.736083ms 2023-03-16T16:06:15.596Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #39 for future & fallible event' TIMED OUT after 152.757566ms 2023-03-16T16:06:15.597Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #40 for future & fallible event' TIMED OUT after 152.980169ms 2023-03-16T16:06:15.597Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #41 for future & fallible event' TIMED OUT after 152.97673ms 2023-03-16T16:06:15.598Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #42 for future & fallible event' TIMED OUT after 152.964891ms 2023-03-16T16:06:15.598Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #43 for future & fallible event' TIMED OUT after 154.480324ms 2023-03-16T16:06:15.598Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #44 for future & fallible event' TIMED OUT after 154.468445ms 2023-03-16T16:06:15.598Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #45 for future & fallible event' TIMED OUT after 154.469352ms 2023-03-16T16:06:15.599Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #46 for future & fallible event' TIMED OUT after 154.849681ms 2023-03-16T16:06:15.599Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #47 for future & fallible event' TIMED OUT after 154.764565ms 2023-03-16T16:06:15.599Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #48 for future & fallible event' TIMED OUT after 154.806133ms 2023-03-16T16:06:15.599Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #49 for future & fallible event' TIMED OUT after 154.790595ms 2023-03-16T16:06:15.600Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #50 for future & fallible event' TIMED OUT after 154.915039ms 2023-03-16T16:06:15.600Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #51 for future & fallible event' TIMED OUT after 154.983363ms 2023-03-16T16:06:15.600Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #52 for future & fallible event' TIMED OUT after 155.05262ms 2023-03-16T16:06:15.600Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #93 for future & fallible event' TIMED OUT after 151.499632ms 2023-03-16T16:06:15.601Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #94 for future & fallible event' TIMED OUT after 151.523496ms 2023-03-16T16:06:15.601Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #95 for future & fallible event' TIMED OUT after 151.460299ms 2023-03-16T16:06:15.601Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #96 for future & fallible event' TIMED OUT after 151.434941ms 2023-03-16T16:06:15.601Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #97 for future & fallible event' TIMED OUT after 151.411102ms 2023-03-16T16:06:15.601Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #98 for future & fallible event' TIMED OUT after 151.389895ms 2023-03-16T16:06:15.601Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #99 for future & fallible event' TIMED OUT after 151.366772ms 2023-03-16T16:06:15.601Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #100 for future & fallible event' TIMED OUT after 151.341936ms 2023-03-16T16:06:15.601Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #101 for future & fallible event' TIMED OUT after 151.462796ms 2023-03-16T16:06:15.601Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #102 for future & fallible event' TIMED OUT after 151.454345ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #17 for future & fallible event' TIMED OUT after 160.516088ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #18 for future & fallible event' TIMED OUT after 160.49668ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #19 for future & fallible event' TIMED OUT after 160.43223ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #20 for future & fallible event' TIMED OUT after 160.408967ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #21 for future & fallible event' TIMED OUT after 160.390952ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #22 for future & fallible event' TIMED OUT after 160.367514ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #23 for future & fallible event' TIMED OUT after 160.345981ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #24 for future & fallible event' TIMED OUT after 160.322482ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #25 for future & fallible event' TIMED OUT after 160.338718ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #27 for future & fallible event' TIMED OUT after 160.224459ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #28 for future & fallible event' TIMED OUT after 160.140275ms 2023-03-16T16:06:15.602Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #29 for future & fallible event' TIMED OUT after 160.10797ms 2023-03-16T16:06:15.603Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #30 for future & fallible event' TIMED OUT after 160.106601ms 2023-03-16T16:06:15.603Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #31 for future & fallible event' TIMED OUT after 160.079975ms 2023-03-16T16:06:15.603Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #32 for future & fallible event' TIMED OUT after 160.059058ms 2023-03-16T16:06:15.603Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #53 for future & fallible event' TIMED OUT after 157.972131ms 2023-03-16T16:06:15.603Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #54 for future & fallible event' TIMED OUT after 157.979053ms 2023-03-16T16:06:15.603Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #55 for future & fallible event' TIMED OUT after 158.086785ms 2023-03-16T16:06:15.603Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #56 for future & fallible event' TIMED OUT after 158.083211ms 2023-03-16T16:06:15.603Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #57 for future & fallible event' TIMED OUT after 158.073437ms 2023-03-16T16:06:15.604Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #58 for future & fallible event' TIMED OUT after 158.05836ms 2023-03-16T16:06:15.604Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #59 for future & fallible event' TIMED OUT after 158.045894ms 2023-03-16T16:06:15.604Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #60 for future & fallible event' TIMED OUT after 158.033538ms 2023-03-16T16:06:15.604Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #61 for future & fallible event' TIMED OUT after 158.01825ms 2023-03-16T16:06:15.604Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #62 for future & fallible event' TIMED OUT after 158.005709ms 2023-03-16T16:06:15.604Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #63 for future & fallible event' TIMED OUT after 157.990667ms 2023-03-16T16:06:15.604Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #64 for future & fallible event' TIMED OUT after 157.97603ms 2023-03-16T16:06:15.604Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #65 for future & fallible event' TIMED OUT after 157.901951ms 2023-03-16T16:06:15.604Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #66 for future & fallible event' TIMED OUT after 157.971845ms 2023-03-16T16:06:15.604Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #67 for future & fallible event' TIMED OUT after 157.961985ms 2023-03-16T16:06:15.604Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #68 for future & fallible event' TIMED OUT after 157.946713ms 2023-03-16T16:06:15.605Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #69 for future & fallible event' TIMED OUT after 157.931134ms 2023-03-16T16:06:15.605Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #70 for future & fallible event' TIMED OUT after 157.915701ms 2023-03-16T16:06:15.605Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #71 for future & fallible event' TIMED OUT after 157.926507ms 2023-03-16T16:06:15.605Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #72 for future & fallible event' TIMED OUT after 157.912036ms 2023-03-16T16:06:15.605Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #73 for future & fallible event' TIMED OUT after 157.89949ms 2023-03-16T16:06:15.605Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #74 for future & fallible event' TIMED OUT after 157.886844ms 2023-03-16T16:06:15.605Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #75 for future & fallible event' TIMED OUT after 157.829902ms 2023-03-16T16:06:15.605Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #76 for future & fallible event' TIMED OUT after 157.811256ms 2023-03-16T16:06:15.605Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #77 for future & fallible event' TIMED OUT after 157.920853ms 2023-03-16T16:06:15.605Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #78 for future & fallible event' TIMED OUT after 157.920693ms 2023-03-16T16:06:15.606Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #79 for future & fallible event' TIMED OUT after 157.913926ms 2023-03-16T16:06:15.607Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #80 for future & fallible event' TIMED OUT after 159.127645ms 2023-03-16T16:06:15.607Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #81 for future & fallible event' TIMED OUT after 159.120628ms 2023-03-16T16:06:15.607Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #82 for future & fallible event' TIMED OUT after 159.108854ms 2023-03-16T16:06:15.607Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #83 for future & fallible event' TIMED OUT after 159.077145ms 2023-03-16T16:06:15.607Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #84 for future & fallible event' TIMED OUT after 159.104413ms 2023-03-16T16:06:15.607Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #85 for future & fallible event' TIMED OUT after 159.044855ms 2023-03-16T16:06:15.607Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #86 for future & fallible event' TIMED OUT after 159.029316ms 2023-03-16T16:06:15.607Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #87 for future & fallible event' TIMED OUT after 159.013261ms 2023-03-16T16:06:15.608Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #88 for future & fallible event' TIMED OUT after 159.000159ms 2023-03-16T16:06:15.608Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #89 for future & fallible event' TIMED OUT after 158.98457ms 2023-03-16T16:06:15.608Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #90 for future & fallible event' TIMED OUT after 158.972129ms 2023-03-16T16:06:15.608Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #91 for future & fallible event' TIMED OUT after 158.956811ms 2023-03-16T16:06:15.608Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #92 for future & fallible event' TIMED OUT after 158.941869ms 2023-03-16T16:06:15.608Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #103 for future & fallible event' TIMED OUT after 158.051603ms 2023-03-16T16:06:15.609Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #104 for future & fallible event' TIMED OUT after 158.069613ms 2023-03-16T16:06:15.609Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #105 for future & fallible event' TIMED OUT after 158.554612ms 2023-03-16T16:06:15.609Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #106 for future & fallible event' TIMED OUT after 158.537274ms 2023-03-16T16:06:15.609Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #107 for future & fallible event' TIMED OUT after 158.522407ms 2023-03-16T16:06:15.609Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #108 for future & fallible event' TIMED OUT after 158.596366ms 2023-03-16T16:06:15.610Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #109 for future & fallible event' TIMED OUT after 159.049571ms 2023-03-16T16:06:15.610Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #110 for future & fallible event' TIMED OUT after 158.904847ms 2023-03-16T16:06:15.610Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #111 for future & fallible event' TIMED OUT after 158.880366ms 2023-03-16T16:06:15.610Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #112 for future & fallible event' TIMED OUT after 158.816227ms 2023-03-16T16:06:15.610Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #113 for future & fallible event' TIMED OUT after 158.784804ms 2023-03-16T16:06:15.610Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #114 for future & fallible event' TIMED OUT after 158.81335ms 2023-03-16T16:06:15.610Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #115 for future & fallible event' TIMED OUT after 158.801295ms 2023-03-16T16:06:15.610Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #116 for future & fallible event' TIMED OUT after 158.774483ms 2023-03-16T16:06:15.610Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #117 for future & fallible event' TIMED OUT after 158.753546ms 2023-03-16T16:06:15.611Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #118 for future & fallible event' TIMED OUT after 158.73298ms 2023-03-16T16:06:15.611Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #119 for future & fallible event' TIMED OUT after 158.691968ms 2023-03-16T16:06:15.611Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #120 for future & fallible event' TIMED OUT after 158.78114ms 2023-03-16T16:06:15.611Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #121 for future & fallible event' TIMED OUT after 158.723441ms 2023-03-16T16:06:15.725Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #122 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.286883ms 2023-03-16T16:06:15.726Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #123 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.459487ms 2023-03-16T16:06:15.728Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #124 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.274237ms 2023-03-16T16:06:15.728Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #125 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.415753ms 2023-03-16T16:06:15.728Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #126 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.567204ms 2023-03-16T16:06:15.729Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #127 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.598245ms 2023-03-16T16:06:15.730Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #128 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.186948ms 2023-03-16T16:06:15.730Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #129 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.425952ms 2023-03-16T16:06:15.731Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #130 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.64452ms 2023-03-16T16:06:15.731Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #131 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.748588ms 2023-03-16T16:06:15.731Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #132 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.829304ms 2023-03-16T16:06:15.731Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #133 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.917272ms 2023-03-16T16:06:15.731Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #134 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.010769ms 2023-03-16T16:06:15.731Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #135 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.92246ms 2023-03-16T16:06:15.731Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #136 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.070046ms 2023-03-16T16:06:15.731Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #137 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.14795ms 2023-03-16T16:06:15.731Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #138 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.231192ms 2023-03-16T16:06:15.732Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #139 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.314498ms 2023-03-16T16:06:15.732Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #140 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.39758ms 2023-03-16T16:06:15.732Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #141 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.483147ms 2023-03-16T16:06:15.732Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #142 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.66936ms 2023-03-16T16:06:15.732Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #143 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.887633ms 2023-03-16T16:06:15.733Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #144 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.020463ms 2023-03-16T16:06:15.733Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #145 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.117985ms 2023-03-16T16:06:15.733Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #146 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.415569ms 2023-03-16T16:06:15.733Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #147 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.509026ms 2023-03-16T16:06:15.733Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #148 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.656683ms 2023-03-16T16:06:15.733Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #149 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.389186ms 2023-03-16T16:06:15.733Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #150 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.466387ms 2023-03-16T16:06:15.734Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #151 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.549328ms 2023-03-16T16:06:15.734Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #152 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.630224ms 2023-03-16T16:06:15.734Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #153 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.716939ms 2023-03-16T16:06:15.734Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #154 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.806352ms 2023-03-16T16:06:15.734Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #155 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.930891ms 2023-03-16T16:06:15.734Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #156 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.054663ms 2023-03-16T16:06:15.734Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #157 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.147539ms 2023-03-16T16:06:15.734Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #158 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.177979ms 2023-03-16T16:06:15.734Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #159 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.254635ms 2023-03-16T16:06:15.735Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #160 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.334653ms 2023-03-16T16:06:15.735Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #161 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.427278ms 2023-03-16T16:06:15.735Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #162 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.64328ms 2023-03-16T16:06:15.735Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #163 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.756356ms 2023-03-16T16:06:15.736Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #164 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.948479ms 2023-03-16T16:06:15.736Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #165 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.086733ms 2023-03-16T16:06:15.736Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #166 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.314072ms 2023-03-16T16:06:15.736Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #167 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.418943ms 2023-03-16T16:06:15.736Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #168 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.403636ms 2023-03-16T16:06:15.736Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #169 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.488196ms 2023-03-16T16:06:15.736Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #170 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.572125ms 2023-03-16T16:06:15.737Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #171 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.656199ms 2023-03-16T16:06:15.737Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #172 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.737435ms 2023-03-16T16:06:15.737Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #173 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.591588ms 2023-03-16T16:06:15.737Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #174 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.669321ms 2023-03-16T16:06:15.737Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #175 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.688719ms 2023-03-16T16:06:15.738Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #176 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.344237ms 2023-03-16T16:06:15.738Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #177 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.047856ms 2023-03-16T16:06:15.739Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #178 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.303927ms 2023-03-16T16:06:15.739Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #179 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.399144ms 2023-03-16T16:06:15.739Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #180 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.480471ms 2023-03-16T16:06:15.739Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #181 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.563677ms 2023-03-16T16:06:15.739Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #182 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.644884ms 2023-03-16T16:06:15.739Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #183 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.433736ms 2023-03-16T16:06:15.739Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #184 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.511574ms 2023-03-16T16:06:15.740Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #185 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.939838ms 2023-03-16T16:06:15.740Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #186 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.048398ms 2023-03-16T16:06:15.740Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #187 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.129905ms 2023-03-16T16:06:15.740Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #188 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.213172ms 2023-03-16T16:06:15.740Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #189 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.382994ms 2023-03-16T16:06:15.740Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #190 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.467258ms 2023-03-16T16:06:15.740Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #191 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.550775ms 2023-03-16T16:06:15.741Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #192 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.631761ms 2023-03-16T16:06:15.741Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #193 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.989772ms 2023-03-16T16:06:15.741Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #194 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.109249ms 2023-03-16T16:06:15.741Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #195 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.189072ms 2023-03-16T16:06:15.742Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #196 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.291496ms 2023-03-16T16:06:15.742Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #197 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.37773ms 2023-03-16T16:06:15.742Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #198 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.458546ms 2023-03-16T16:06:15.742Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #199 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.542018ms 2023-03-16T16:06:15.742Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #200 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.62317ms 2023-03-16T16:06:15.742Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #201 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.7059ms 2023-03-16T16:06:15.742Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #202 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.791047ms 2023-03-16T16:06:15.742Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #203 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.936899ms 2023-03-16T16:06:15.742Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #204 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.025279ms 2023-03-16T16:06:15.742Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #205 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.108846ms 2023-03-16T16:06:15.743Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #206 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.192729ms 2023-03-16T16:06:15.743Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #207 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.276126ms 2023-03-16T16:06:15.743Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #208 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.357128ms 2023-03-16T16:06:15.743Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #209 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.440414ms 2023-03-16T16:06:15.743Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #210 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.521335ms 2023-03-16T16:06:15.743Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #211 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.604251ms 2023-03-16T16:06:15.743Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #212 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.317426ms 2023-03-16T16:06:15.743Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #213 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.433745ms 2023-03-16T16:06:15.743Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #214 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.554023ms 2023-03-16T16:06:15.743Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #215 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.640628ms 2023-03-16T16:06:15.745Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #216 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.790364ms 2023-03-16T16:06:15.745Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #217 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.945654ms 2023-03-16T16:06:15.745Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #218 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.037457ms 2023-03-16T16:06:15.745Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #219 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.133125ms 2023-03-16T16:06:15.745Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #220 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.440764ms 2023-03-16T16:06:15.745Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #221 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.552165ms 2023-03-16T16:06:15.746Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #222 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.645181ms 2023-03-16T16:06:15.746Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #15 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.087486ms 2023-03-16T16:06:15.746Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #223 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.226246ms 2023-03-16T16:06:15.746Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #224 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.322209ms 2023-03-16T16:06:15.747Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #225 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.403571ms 2023-03-16T16:06:15.747Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #226 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.489615ms 2023-03-16T16:06:15.747Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #227 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.570416ms 2023-03-16T16:06:15.747Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #228 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.228373ms 2023-03-16T16:06:15.747Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #229 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.304848ms 2023-03-16T16:06:15.747Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #230 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.391037ms 2023-03-16T16:06:15.747Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #231 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.472108ms 2023-03-16T16:06:15.747Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #232 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.608607ms 2023-03-16T16:06:15.747Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #233 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.697939ms 2023-03-16T16:06:15.748Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #234 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.905484ms 2023-03-16T16:06:15.748Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #235 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.987543ms 2023-03-16T16:06:15.748Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #236 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.073211ms 2023-03-16T16:06:15.748Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #7 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.979415ms 2023-03-16T16:06:15.748Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #8 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.059323ms 2023-03-16T16:06:15.748Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #9 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.1407ms 2023-03-16T16:06:15.748Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #10 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.223797ms 2023-03-16T16:06:15.748Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #11 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.388731ms 2023-03-16T16:06:15.748Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #12 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.476193ms 2023-03-16T16:06:15.748Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #13 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.557285ms 2023-03-16T16:06:15.749Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #14 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.643649ms 2023-03-16T16:06:15.749Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #237 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.423929ms 2023-03-16T16:06:15.749Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #238 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.500228ms 2023-03-16T16:06:15.749Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #239 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.58375ms 2023-03-16T16:06:15.749Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #240 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.665067ms 2023-03-16T16:06:15.749Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #241 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.748189ms 2023-03-16T16:06:15.749Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #242 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.829065ms 2023-03-16T16:06:15.749Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #243 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.963909ms 2023-03-16T16:06:15.749Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #244 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.045382ms 2023-03-16T16:06:15.749Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #245 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.131521ms 2023-03-16T16:06:15.750Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #246 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.342359ms 2023-03-16T16:06:15.750Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #247 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.432804ms 2023-03-16T16:06:15.750Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #0 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.246453ms 2023-03-16T16:06:15.750Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #1 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.330281ms 2023-03-16T16:06:15.750Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #2 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.414255ms 2023-03-16T16:06:15.750Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #3 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.563179ms 2023-03-16T16:06:15.750Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #4 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.306804ms 2023-03-16T16:06:15.750Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #5 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.384312ms 2023-03-16T16:06:15.750Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #6 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.465097ms 2023-03-16T16:06:15.751Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #33 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.532069ms 2023-03-16T16:06:15.751Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #34 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.615376ms 2023-03-16T16:06:15.751Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #35 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.700838ms 2023-03-16T16:06:15.751Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #36 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.789027ms 2023-03-16T16:06:15.751Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #37 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.838239ms 2023-03-16T16:06:15.751Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #38 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.978297ms 2023-03-16T16:06:15.751Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #39 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.074616ms 2023-03-16T16:06:15.753Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #40 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.246782ms 2023-03-16T16:06:15.753Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #41 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.36491ms 2023-03-16T16:06:15.753Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #97 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.139791ms 2023-03-16T16:06:15.754Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #248 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.185525ms 2023-03-16T16:06:15.754Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #249 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.364103ms 2023-03-16T16:06:15.754Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #250 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.581087ms 2023-03-16T16:06:15.754Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #251 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.741736ms 2023-03-16T16:06:15.754Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #252 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.826336ms 2023-03-16T16:06:15.754Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #253 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.910285ms 2023-03-16T16:06:15.755Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #254 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.993968ms 2023-03-16T16:06:15.755Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #255 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.078297ms 2023-03-16T16:06:15.755Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #16 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.735172ms 2023-03-16T16:06:15.755Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #26 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.816514ms 2023-03-16T16:06:15.755Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #44 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.300666ms 2023-03-16T16:06:15.755Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #45 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.382424ms 2023-03-16T16:06:15.755Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #46 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.014672ms 2023-03-16T16:06:15.755Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #47 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.223666ms 2023-03-16T16:06:15.756Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #48 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.314712ms 2023-03-16T16:06:15.756Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #49 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.39627ms 2023-03-16T16:06:15.756Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #50 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.479221ms 2023-03-16T16:06:15.756Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #51 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.563139ms 2023-03-16T16:06:15.756Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #52 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.64389ms 2023-03-16T16:06:15.756Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #53 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.625885ms 2023-03-16T16:06:15.756Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #54 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.783301ms 2023-03-16T16:06:15.756Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #55 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.874708ms 2023-03-16T16:06:15.756Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #56 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.958842ms 2023-03-16T16:06:15.756Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #42 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.800701ms 2023-03-16T16:06:15.757Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #43 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.880805ms 2023-03-16T16:06:15.757Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #93 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.369041ms 2023-03-16T16:06:15.757Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #94 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.452588ms 2023-03-16T16:06:15.757Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #95 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.533414ms 2023-03-16T16:06:15.757Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #96 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.617242ms 2023-03-16T16:06:15.757Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #32 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.987622ms 2023-03-16T16:06:15.757Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #57 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.782237ms 2023-03-16T16:06:15.757Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #58 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.867433ms 2023-03-16T16:06:15.757Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #59 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.953096ms 2023-03-16T16:06:15.758Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #60 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.040513ms 2023-03-16T16:06:15.758Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #61 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.465463ms 2023-03-16T16:06:15.758Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #62 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.545357ms 2023-03-16T16:06:15.758Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #98 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.414042ms 2023-03-16T16:06:15.758Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #99 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.56607ms 2023-03-16T16:06:15.758Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #100 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.677767ms 2023-03-16T16:06:15.758Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #101 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.762011ms 2023-03-16T16:06:15.759Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #102 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.845694ms 2023-03-16T16:06:15.759Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #17 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.92636ms 2023-03-16T16:06:15.759Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #18 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.007065ms 2023-03-16T16:06:15.759Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #19 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.090582ms 2023-03-16T16:06:15.759Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #20 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.170897ms 2023-03-16T16:06:15.759Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #21 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.25464ms 2023-03-16T16:06:15.759Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #22 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.241348ms 2023-03-16T16:06:15.759Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #23 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.337222ms 2023-03-16T16:06:15.761Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #24 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.579346ms 2023-03-16T16:06:15.761Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #25 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.677365ms 2023-03-16T16:06:15.761Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #27 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.761433ms 2023-03-16T16:06:15.761Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #28 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.847587ms 2023-03-16T16:06:15.761Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #29 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.928639ms 2023-03-16T16:06:15.761Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #30 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.010111ms 2023-03-16T16:06:15.761Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #31 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.14848ms 2023-03-16T16:06:15.762Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #63 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.896921ms 2023-03-16T16:06:15.762Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #64 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.988283ms 2023-03-16T16:06:15.762Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #65 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.072011ms 2023-03-16T16:06:15.762Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #66 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.1559ms 2023-03-16T16:06:15.762Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #67 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.236349ms 2023-03-16T16:06:15.762Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #68 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.322769ms 2023-03-16T16:06:15.762Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #69 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.403399ms 2023-03-16T16:06:15.762Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #70 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.543402ms 2023-03-16T16:06:15.762Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #71 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.625606ms 2023-03-16T16:06:15.762Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #72 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.712953ms 2023-03-16T16:06:15.763Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #73 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.796911ms 2023-03-16T16:06:15.763Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #74 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.877588ms 2023-03-16T16:06:15.763Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #75 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.976133ms 2023-03-16T16:06:15.763Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #76 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.064001ms 2023-03-16T16:06:15.763Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #77 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.25058ms 2023-03-16T16:06:15.764Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #78 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.947806ms 2023-03-16T16:06:15.764Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #79 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.888719ms 2023-03-16T16:06:15.764Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #80 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.969355ms 2023-03-16T16:06:15.764Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #81 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.96491ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #82 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.032313ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #83 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.094658ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #84 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.156822ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #85 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.336769ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #86 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.40365ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #87 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.463664ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #88 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.527989ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #89 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.636207ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #90 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.706788ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #91 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.769313ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #92 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.831362ms 2023-03-16T16:06:15.765Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #103 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.561368ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #104 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.62039ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #105 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.703286ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #106 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.552087ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #107 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.611334ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #108 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.675849ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #109 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.735086ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #110 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.799185ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #111 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.896963ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #112 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.960702ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #113 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.025628ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #114 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.08511ms 2023-03-16T16:06:15.766Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #115 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.146688ms 2023-03-16T16:06:15.767Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #116 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.211289ms 2023-03-16T16:06:15.767Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #117 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.27435ms 2023-03-16T16:06:15.767Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #118 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.337658ms 2023-03-16T16:06:15.767Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #119 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.932269ms 2023-03-16T16:06:15.767Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #120 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.019496ms 2023-03-16T16:06:15.767Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #121 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.088778ms 2023-03-16T16:06:15.877Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #122 for future & fallible event' TIMED OUT after 151.195351ms 2023-03-16T16:06:15.877Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #122 for future & fallible event' ended after running for 606.197615ms -- stats: | ok: 2 events; avg 100.548685ms - 3.29925/sec | time out: 2 events; avg 150.966763ms - 3.29925/sec | failed: 2 events; avg 51.218525ms - 3.29925/sec 2023-03-16T16:06:15.877Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #123 for future & fallible event' TIMED OUT after 151.753984ms 2023-03-16T16:06:15.878Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #123 for future & fallible event' ended after running for 606.758523ms -- stats: | ok: 2 events; avg 100.50258ms - 3.29620/sec | time out: 2 events; avg 151.272416ms - 3.29620/sec | failed: 2 events; avg 51.390976ms - 3.29620/sec 2023-03-16T16:06:15.879Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #124 for future & fallible event' TIMED OUT after 151.02566ms 2023-03-16T16:06:15.879Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #124 for future & fallible event' ended after running for 608.547786ms -- stats: | ok: 2 events; avg 101.018235ms - 3.28651/sec | time out: 2 events; avg 151.42414ms - 3.28651/sec | failed: 2 events; avg 51.347829ms - 3.28651/sec 2023-03-16T16:06:15.880Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #125 for future & fallible event' TIMED OUT after 151.342908ms 2023-03-16T16:06:15.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #125 for future & fallible event' ended after running for 608.789752ms -- stats: | ok: 2 events; avg 100.957543ms - 3.28521/sec | time out: 2 events; avg 151.643574ms - 3.28521/sec | failed: 2 events; avg 51.579259ms - 3.28521/sec 2023-03-16T16:06:15.881Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #126 for future & fallible event' TIMED OUT after 152.708434ms 2023-03-16T16:06:15.881Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #126 for future & fallible event' ended after running for 610.42779ms -- stats: | ok: 2 events; avg 100.83434ms - 3.27639/sec | time out: 2 events; avg 152.389705ms - 3.27639/sec | failed: 2 events; avg 51.705223ms - 3.27639/sec 2023-03-16T16:06:15.881Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #127 for future & fallible event' TIMED OUT after 152.089286ms 2023-03-16T16:06:15.882Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #127 for future & fallible event' ended after running for 610.66527ms -- stats: | ok: 2 events; avg 100.778691ms - 3.27512/sec | time out: 2 events; avg 152.084395ms - 3.27512/sec | failed: 2 events; avg 52.263863ms - 3.27512/sec 2023-03-16T16:06:15.882Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #128 for future & fallible event' TIMED OUT after 151.5915ms 2023-03-16T16:06:15.882Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #128 for future & fallible event' ended after running for 611.008386ms -- stats: | ok: 2 events; avg 101.677656ms - 3.27328/sec | time out: 2 events; avg 151.720166ms - 3.27328/sec | failed: 2 events; avg 51.67225ms - 3.27328/sec 2023-03-16T16:06:15.882Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #129 for future & fallible event' TIMED OUT after 151.893751ms 2023-03-16T16:06:15.883Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #129 for future & fallible event' ended after running for 611.498233ms -- stats: | ok: 2 events; avg 101.558641ms - 3.27066/sec | time out: 2 events; avg 151.974201ms - 3.27066/sec | failed: 2 events; avg 51.956296ms - 3.27066/sec 2023-03-16T16:06:15.883Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #130 for future & fallible event' TIMED OUT after 152.059543ms 2023-03-16T16:06:15.883Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #130 for future & fallible event' ended after running for 611.742379ms -- stats: | ok: 2 events; avg 101.506807ms - 3.26935/sec | time out: 2 events; avg 152.060077ms - 3.26935/sec | failed: 2 events; avg 52.115884ms - 3.26935/sec 2023-03-16T16:06:15.883Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #131 for future & fallible event' TIMED OUT after 152.251489ms 2023-03-16T16:06:15.883Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #131 for future & fallible event' ended after running for 611.990717ms -- stats: | ok: 2 events; avg 101.4539ms - 3.26802/sec | time out: 2 events; avg 152.151108ms - 3.26802/sec | failed: 2 events; avg 52.211247ms - 3.26802/sec 2023-03-16T16:06:15.883Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #132 for future & fallible event' TIMED OUT after 152.521831ms 2023-03-16T16:06:15.883Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #132 for future & fallible event' ended after running for 612.313467ms -- stats: | ok: 2 events; avg 101.405099ms - 3.26630/sec | time out: 2 events; avg 152.278751ms - 3.26630/sec | failed: 2 events; avg 52.295811ms - 3.26630/sec 2023-03-16T16:06:15.884Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #133 for future & fallible event' TIMED OUT after 152.696304ms 2023-03-16T16:06:15.884Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #133 for future & fallible event' ended after running for 612.523699ms -- stats: | ok: 2 events; avg 101.340204ms - 3.26518/sec | time out: 2 events; avg 152.358323ms - 3.26518/sec | failed: 2 events; avg 52.383989ms - 3.26518/sec 2023-03-16T16:06:15.884Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #134 for future & fallible event' TIMED OUT after 152.863434ms 2023-03-16T16:06:15.884Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #134 for future & fallible event' ended after running for 612.882802ms -- stats: | ok: 2 events; avg 101.289183ms - 3.26327/sec | time out: 2 events; avg 152.433991ms - 3.26327/sec | failed: 2 events; avg 52.473471ms - 3.26327/sec 2023-03-16T16:06:15.884Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #135 for future & fallible event' TIMED OUT after 153.098778ms 2023-03-16T16:06:15.885Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #135 for future & fallible event' ended after running for 613.234355ms -- stats: | ok: 2 events; avg 101.382107ms - 3.26140/sec | time out: 2 events; avg 152.544975ms - 3.26140/sec | failed: 2 events; avg 52.471906ms - 3.26140/sec 2023-03-16T16:06:15.885Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #136 for future & fallible event' TIMED OUT after 153.276279ms 2023-03-16T16:06:15.885Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #136 for future & fallible event' ended after running for 613.451048ms -- stats: | ok: 2 events; avg 101.572216ms - 3.26024/sec | time out: 2 events; avg 152.305245ms - 3.26024/sec | failed: 2 events; avg 52.301615ms - 3.26024/sec 2023-03-16T16:06:15.885Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #137 for future & fallible event' TIMED OUT after 153.438241ms 2023-03-16T16:06:15.885Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #137 for future & fallible event' ended after running for 612.958615ms -- stats: | ok: 2 events; avg 101.485059ms - 3.26286/sec | time out: 2 events; avg 152.370632ms - 3.26286/sec | failed: 2 events; avg 52.413616ms - 3.26286/sec 2023-03-16T16:06:15.885Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #138 for future & fallible event' TIMED OUT after 153.659751ms 2023-03-16T16:06:15.885Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #138 for future & fallible event' ended after running for 613.244936ms -- stats: | ok: 2 events; avg 101.36281ms - 3.26134/sec | time out: 2 events; avg 152.503341ms - 3.26134/sec | failed: 2 events; avg 52.506343ms - 3.26134/sec 2023-03-16T16:06:15.885Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #139 for future & fallible event' TIMED OUT after 153.836661ms 2023-03-16T16:06:15.886Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #139 for future & fallible event' ended after running for 613.460662ms -- stats: | ok: 2 events; avg 101.215735ms - 3.26019/sec | time out: 2 events; avg 152.727753ms - 3.26019/sec | failed: 2 events; avg 52.59531ms - 3.26019/sec 2023-03-16T16:06:15.886Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #140 for future & fallible event' TIMED OUT after 153.992508ms 2023-03-16T16:06:15.886Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #140 for future & fallible event' ended after running for 613.642202ms -- stats: | ok: 2 events; avg 101.162925ms - 3.25923/sec | time out: 2 events; avg 152.799785ms - 3.25923/sec | failed: 2 events; avg 52.683607ms - 3.25923/sec 2023-03-16T16:06:15.886Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #141 for future & fallible event' TIMED OUT after 154.146766ms 2023-03-16T16:06:15.886Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #141 for future & fallible event' ended after running for 613.857016ms -- stats: | ok: 2 events; avg 101.111472ms - 3.25809/sec | time out: 2 events; avg 152.830109ms - 3.25809/sec | failed: 2 events; avg 52.772015ms - 3.25809/sec 2023-03-16T16:06:15.886Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #142 for future & fallible event' TIMED OUT after 154.300438ms 2023-03-16T16:06:15.886Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #142 for future & fallible event' ended after running for 614.181893ms -- stats: | ok: 2 events; avg 101.05662ms - 3.25636/sec | time out: 2 events; avg 152.892232ms - 3.25636/sec | failed: 2 events; avg 52.953321ms - 3.25636/sec 2023-03-16T16:06:15.887Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #143 for future & fallible event' TIMED OUT after 154.060341ms 2023-03-16T16:06:15.887Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #143 for future & fallible event' ended after running for 614.398336ms -- stats: | ok: 2 events; avg 101.557136ms - 3.25522/sec | time out: 2 events; avg 152.768061ms - 3.25522/sec | failed: 2 events; avg 52.611932ms - 3.25522/sec 2023-03-16T16:06:15.887Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #144 for future & fallible event' TIMED OUT after 154.197742ms 2023-03-16T16:06:15.887Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #144 for future & fallible event' ended after running for 614.610517ms -- stats: | ok: 2 events; avg 101.477221ms - 3.25409/sec | time out: 2 events; avg 152.920723ms - 3.25409/sec | failed: 2 events; avg 52.724585ms - 3.25409/sec 2023-03-16T16:06:15.887Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #145 for future & fallible event' TIMED OUT after 154.147077ms 2023-03-16T16:06:15.887Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #145 for future & fallible event' ended after running for 614.888953ms -- stats: | ok: 2 events; avg 101.426892ms - 3.25262/sec | time out: 2 events; avg 152.892962ms - 3.25262/sec | failed: 2 events; avg 52.816369ms - 3.25262/sec 2023-03-16T16:06:15.888Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #146 for future & fallible event' TIMED OUT after 154.483282ms 2023-03-16T16:06:15.888Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #146 for future & fallible event' ended after running for 615.251559ms -- stats: | ok: 2 events; avg 101.376966ms - 3.25070/sec | time out: 2 events; avg 153.051004ms - 3.25070/sec | failed: 2 events; avg 53.01227ms - 3.25070/sec 2023-03-16T16:06:15.888Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #147 for future & fallible event' TIMED OUT after 154.613881ms 2023-03-16T16:06:15.888Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #147 for future & fallible event' ended after running for 615.499289ms -- stats: | ok: 2 events; avg 101.32581ms - 3.24939/sec | time out: 2 events; avg 153.104037ms - 3.24939/sec | failed: 2 events; avg 53.107381ms - 3.24939/sec 2023-03-16T16:06:15.888Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #148 for future & fallible event' TIMED OUT after 154.79687ms 2023-03-16T16:06:15.888Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #148 for future & fallible event' ended after running for 615.815199ms -- stats: | ok: 2 events; avg 101.275645ms - 3.24773/sec | time out: 2 events; avg 153.187424ms - 3.24773/sec | failed: 2 events; avg 53.228091ms - 3.24773/sec 2023-03-16T16:06:15.889Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #149 for future & fallible event' TIMED OUT after 155.095422ms 2023-03-16T16:06:15.889Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #149 for future & fallible event' ended after running for 616.09583ms -- stats: | ok: 2 events; avg 101.55575ms - 3.24625/sec | time out: 2 events; avg 153.64939ms - 3.24625/sec | failed: 2 events; avg 52.638751ms - 3.24625/sec 2023-03-16T16:06:15.889Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #150 for future & fallible event' TIMED OUT after 155.287714ms 2023-03-16T16:06:15.889Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #150 for future & fallible event' ended after running for 616.332955ms -- stats: | ok: 2 events; avg 101.505928ms - 3.24500/sec | time out: 2 events; avg 153.734505ms - 3.24500/sec | failed: 2 events; avg 52.722052ms - 3.24500/sec 2023-03-16T16:06:15.889Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #151 for future & fallible event' TIMED OUT after 155.468759ms 2023-03-16T16:06:15.889Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #151 for future & fallible event' ended after running for 616.634303ms -- stats: | ok: 2 events; avg 101.451337ms - 3.24341/sec | time out: 2 events; avg 153.811872ms - 3.24341/sec | failed: 2 events; avg 52.838266ms - 3.24341/sec 2023-03-16T16:06:15.889Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #152 for future & fallible event' TIMED OUT after 155.726354ms 2023-03-16T16:06:15.890Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #152 for future & fallible event' ended after running for 616.891983ms -- stats: | ok: 2 events; avg 101.397678ms - 3.24206/sec | time out: 2 events; avg 153.932989ms - 3.24206/sec | failed: 2 events; avg 52.929454ms - 3.24206/sec 2023-03-16T16:06:15.890Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #153 for future & fallible event' TIMED OUT after 155.910165ms 2023-03-16T16:06:15.890Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #153 for future & fallible event' ended after running for 617.129813ms -- stats: | ok: 2 events; avg 101.341084ms - 3.24081/sec | time out: 2 events; avg 154.01876ms - 3.24081/sec | failed: 2 events; avg 53.021535ms - 3.24081/sec 2023-03-16T16:06:15.890Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #154 for future & fallible event' TIMED OUT after 155.979242ms 2023-03-16T16:06:15.890Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #154 for future & fallible event' ended after running for 617.374922ms -- stats: | ok: 2 events; avg 101.216227ms - 3.23952/sec | time out: 2 events; avg 154.115021ms - 3.23952/sec | failed: 2 events; avg 53.112883ms - 3.23952/sec 2023-03-16T16:06:15.890Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #155 for future & fallible event' TIMED OUT after 156.255332ms 2023-03-16T16:06:15.891Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #155 for future & fallible event' ended after running for 617.712526ms -- stats: | ok: 2 events; avg 101.205319ms - 3.23775/sec | time out: 2 events; avg 154.255956ms - 3.23775/sec | failed: 2 events; avg 53.218141ms - 3.23775/sec 2023-03-16T16:06:15.891Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #156 for future & fallible event' TIMED OUT after 156.399741ms 2023-03-16T16:06:15.891Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #156 for future & fallible event' ended after running for 617.959043ms -- stats: | ok: 2 events; avg 101.149686ms - 3.23646/sec | time out: 2 events; avg 154.315382ms - 3.23646/sec | failed: 2 events; avg 53.311527ms - 3.23646/sec 2023-03-16T16:06:15.891Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #157 for future & fallible event' TIMED OUT after 156.58067ms 2023-03-16T16:06:15.891Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #157 for future & fallible event' ended after running for 618.186788ms -- stats: | ok: 2 events; avg 101.040237ms - 3.23527/sec | time out: 2 events; avg 154.395238ms - 3.23527/sec | failed: 2 events; avg 53.401433ms - 3.23527/sec 2023-03-16T16:06:15.891Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #158 for future & fallible event' TIMED OUT after 156.832019ms 2023-03-16T16:06:15.891Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #158 for future & fallible event' ended after running for 618.496973ms -- stats: | ok: 2 events; avg 101.013511ms - 3.23365/sec | time out: 2 events; avg 154.585689ms - 3.23365/sec | failed: 2 events; avg 53.46486ms - 3.23365/sec 2023-03-16T16:06:15.892Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #159 for future & fallible event' TIMED OUT after 157.02142ms 2023-03-16T16:06:15.892Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #159 for future & fallible event' ended after running for 618.739516ms -- stats: | ok: 2 events; avg 100.966752ms - 3.23238/sec | time out: 2 events; avg 154.635131ms - 3.23238/sec | failed: 2 events; avg 53.548925ms - 3.23238/sec 2023-03-16T16:06:15.892Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #160 for future & fallible event' TIMED OUT after 157.203291ms 2023-03-16T16:06:15.892Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #160 for future & fallible event' ended after running for 618.982991ms -- stats: | ok: 2 events; avg 100.994587ms - 3.23111/sec | time out: 2 events; avg 154.714271ms - 3.23111/sec | failed: 2 events; avg 53.596687ms - 3.23111/sec 2023-03-16T16:06:15.892Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #161 for future & fallible event' TIMED OUT after 157.257772ms 2023-03-16T16:06:15.892Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #161 for future & fallible event' ended after running for 619.284213ms -- stats: | ok: 2 events; avg 100.93987ms - 3.22953/sec | time out: 2 events; avg 154.737234ms - 3.22953/sec | failed: 2 events; avg 53.688064ms - 3.22953/sec 2023-03-16T16:06:15.892Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #162 for future & fallible event' TIMED OUT after 157.478485ms 2023-03-16T16:06:15.893Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #162 for future & fallible event' ended after running for 619.524605ms -- stats: | ok: 2 events; avg 100.829318ms - 3.22828/sec | time out: 2 events; avg 154.894233ms - 3.22828/sec | failed: 2 events; avg 53.842314ms - 3.22828/sec 2023-03-16T16:06:15.893Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #163 for future & fallible event' TIMED OUT after 157.68585ms 2023-03-16T16:06:15.893Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #163 for future & fallible event' ended after running for 619.795253ms -- stats: | ok: 2 events; avg 100.77747ms - 3.22687/sec | time out: 2 events; avg 154.993773ms - 3.22687/sec | failed: 2 events; avg 53.945854ms - 3.22687/sec 2023-03-16T16:06:15.893Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #164 for future & fallible event' TIMED OUT after 157.358737ms 2023-03-16T16:06:15.893Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #164 for future & fallible event' ended after running for 620.11644ms -- stats: | ok: 2 events; avg 101.391211ms - 3.22520/sec | time out: 2 events; avg 154.817849ms - 3.22520/sec | failed: 2 events; avg 53.590275ms - 3.22520/sec 2023-03-16T16:06:15.894Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #165 for future & fallible event' TIMED OUT after 157.686897ms 2023-03-16T16:06:15.894Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #165 for future & fallible event' ended after running for 620.443362ms -- stats: | ok: 2 events; avg 101.343296ms - 3.22350/sec | time out: 2 events; avg 154.970631ms - 3.22350/sec | failed: 2 events; avg 53.7083ms - 3.22350/sec 2023-03-16T16:06:15.894Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #166 for future & fallible event' TIMED OUT after 157.810143ms 2023-03-16T16:06:15.894Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #166 for future & fallible event' ended after running for 620.749477ms -- stats: | ok: 2 events; avg 101.245239ms - 3.22191/sec | time out: 2 events; avg 155.045837ms - 3.22191/sec | failed: 2 events; avg 53.869128ms - 3.22191/sec 2023-03-16T16:06:15.894Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #167 for future & fallible event' TIMED OUT after 158.20141ms 2023-03-16T16:06:15.895Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #167 for future & fallible event' ended after running for 621.259679ms -- stats: | ok: 2 events; avg 100.896597ms - 3.21927/sec | time out: 2 events; avg 155.517474ms - 3.21927/sec | failed: 2 events; avg 53.968243ms - 3.21927/sec 2023-03-16T16:06:15.895Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #168 for future & fallible event' TIMED OUT after 158.472779ms 2023-03-16T16:06:15.895Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #168 for future & fallible event' ended after running for 621.566256ms -- stats: | ok: 2 events; avg 101.422772ms - 3.21768/sec | time out: 2 events; avg 155.664891ms - 3.21768/sec | failed: 2 events; avg 53.504668ms - 3.21768/sec 2023-03-16T16:06:15.895Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #169 for future & fallible event' TIMED OUT after 158.717041ms 2023-03-16T16:06:15.895Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #169 for future & fallible event' ended after running for 621.965326ms -- stats: | ok: 2 events; avg 101.371668ms - 3.21561/sec | time out: 2 events; avg 155.750528ms - 3.21561/sec | failed: 2 events; avg 53.591676ms - 3.21561/sec 2023-03-16T16:06:15.896Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #170 for future & fallible event' TIMED OUT after 159.102558ms 2023-03-16T16:06:15.896Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #170 for future & fallible event' ended after running for 622.309105ms -- stats: | ok: 2 events; avg 101.166993ms - 3.21384/sec | time out: 2 events; avg 155.935585ms - 3.21384/sec | failed: 2 events; avg 53.70884ms - 3.21384/sec 2023-03-16T16:06:15.896Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #171 for future & fallible event' TIMED OUT after 159.350624ms 2023-03-16T16:06:15.896Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #171 for future & fallible event' ended after running for 622.613391ms -- stats: | ok: 2 events; avg 101.103894ms - 3.21227/sec | time out: 2 events; avg 156.206936ms - 3.21227/sec | failed: 2 events; avg 53.79907ms - 3.21227/sec 2023-03-16T16:06:15.896Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #172 for future & fallible event' TIMED OUT after 159.68919ms 2023-03-16T16:06:15.897Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #172 for future & fallible event' ended after running for 623.009686ms -- stats: | ok: 2 events; avg 101.048917ms - 3.21022/sec | time out: 2 events; avg 156.372905ms - 3.21022/sec | failed: 2 events; avg 53.886376ms - 3.21022/sec 2023-03-16T16:06:15.897Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #173 for future & fallible event' TIMED OUT after 159.946825ms 2023-03-16T16:06:15.897Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #173 for future & fallible event' ended after running for 623.314427ms -- stats: | ok: 2 events; avg 101.104006ms - 3.20865/sec | time out: 2 events; avg 156.497359ms - 3.20865/sec | failed: 2 events; avg 53.860288ms - 3.20865/sec 2023-03-16T16:06:15.897Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #174 for future & fallible event' TIMED OUT after 160.185607ms 2023-03-16T16:06:15.897Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #174 for future & fallible event' ended after running for 623.686872ms -- stats: | ok: 2 events; avg 100.696139ms - 3.20674/sec | time out: 2 events; avg 156.952396ms - 3.20674/sec | failed: 2 events; avg 53.945683ms - 3.20674/sec 2023-03-16T16:06:15.898Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #175 for future & fallible event' TIMED OUT after 160.196675ms 2023-03-16T16:06:15.898Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #175 for future & fallible event' ended after running for 624.244888ms -- stats: | ok: 2 events; avg 100.673035ms - 3.20387/sec | time out: 2 events; avg 156.964123ms - 3.20387/sec | failed: 2 events; avg 54.002941ms - 3.20387/sec 2023-03-16T16:06:15.898Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #176 for future & fallible event' TIMED OUT after 160.423739ms 2023-03-16T16:06:15.898Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #176 for future & fallible event' ended after running for 624.641458ms -- stats: | ok: 2 events; avg 100.572795ms - 3.20184/sec | time out: 2 events; avg 157.077968ms - 3.20184/sec | failed: 2 events; avg 54.377124ms - 3.20184/sec 2023-03-16T16:06:15.899Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #177 for future & fallible event' TIMED OUT after 159.851583ms 2023-03-16T16:06:15.899Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #177 for future & fallible event' ended after running for 624.986209ms -- stats: | ok: 2 events; avg 101.073176ms - 3.20007/sec | time out: 2 events; avg 156.828314ms - 3.20007/sec | failed: 2 events; avg 54.272912ms - 3.20007/sec 2023-03-16T16:06:15.899Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #178 for future & fallible event' TIMED OUT after 160.082476ms 2023-03-16T16:06:15.899Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #178 for future & fallible event' ended after running for 625.290424ms -- stats: | ok: 2 events; avg 100.963205ms - 3.19851/sec | time out: 2 events; avg 156.948239ms - 3.19851/sec | failed: 2 events; avg 54.455388ms - 3.19851/sec 2023-03-16T16:06:15.899Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #179 for future & fallible event' TIMED OUT after 160.431298ms 2023-03-16T16:06:15.900Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #179 for future & fallible event' ended after running for 625.713079ms -- stats: | ok: 2 events; avg 100.839078ms - 3.19635/sec | time out: 2 events; avg 157.178193ms - 3.19635/sec | failed: 2 events; avg 54.572113ms - 3.19635/sec 2023-03-16T16:06:15.900Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #180 for future & fallible event' TIMED OUT after 160.72026ms 2023-03-16T16:06:15.900Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #180 for future & fallible event' ended after running for 626.049028ms -- stats: | ok: 2 events; avg 100.778475ms - 3.19464/sec | time out: 2 events; avg 157.387644ms - 3.19464/sec | failed: 2 events; avg 54.657515ms - 3.19464/sec 2023-03-16T16:06:15.900Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #181 for future & fallible event' TIMED OUT after 160.996286ms 2023-03-16T16:06:15.900Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #181 for future & fallible event' ended after running for 626.47053ms -- stats: | ok: 2 events; avg 100.684911ms - 3.19249/sec | time out: 2 events; avg 157.521889ms - 3.19249/sec | failed: 2 events; avg 54.7444ms - 3.19249/sec 2023-03-16T16:06:15.901Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #182 for future & fallible event' TIMED OUT after 161.315965ms 2023-03-16T16:06:15.901Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #182 for future & fallible event' ended after running for 626.812073ms -- stats: | ok: 2 events; avg 100.631721ms - 3.19075/sec | time out: 2 events; avg 157.714427ms - 3.19075/sec | failed: 2 events; avg 54.831885ms - 3.19075/sec 2023-03-16T16:06:15.901Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #183 for future & fallible event' TIMED OUT after 161.597679ms 2023-03-16T16:06:15.901Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #183 for future & fallible event' ended after running for 627.107652ms -- stats: | ok: 2 events; avg 101.615474ms - 3.18925/sec | time out: 2 events; avg 157.816201ms - 3.18925/sec | failed: 2 events; avg 53.875983ms - 3.18925/sec 2023-03-16T16:06:15.901Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #184 for future & fallible event' TIMED OUT after 162.001467ms 2023-03-16T16:06:15.902Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #184 for future & fallible event' ended after running for 627.572156ms -- stats: | ok: 2 events; avg 101.568982ms - 3.18688/sec | time out: 2 events; avg 158.014521ms - 3.18688/sec | failed: 2 events; avg 53.969502ms - 3.18688/sec 2023-03-16T16:06:15.902Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #185 for future & fallible event' TIMED OUT after 161.925152ms 2023-03-16T16:06:15.902Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #185 for future & fallible event' ended after running for 627.913072ms -- stats: | ok: 2 events; avg 101.522163ms - 3.18515/sec | time out: 2 events; avg 157.966107ms - 3.18515/sec | failed: 2 events; avg 54.260712ms - 3.18515/sec 2023-03-16T16:06:15.902Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #186 for future & fallible event' TIMED OUT after 162.267152ms 2023-03-16T16:06:15.902Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #186 for future & fallible event' ended after running for 628.33088ms -- stats: | ok: 2 events; avg 101.473793ms - 3.18304/sec | time out: 2 events; avg 158.124596ms - 3.18304/sec | failed: 2 events; avg 54.365113ms - 3.18304/sec 2023-03-16T16:06:15.903Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #187 for future & fallible event' TIMED OUT after 162.554921ms 2023-03-16T16:06:15.903Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #187 for future & fallible event' ended after running for 628.672112ms -- stats: | ok: 2 events; avg 101.412505ms - 3.18131/sec | time out: 2 events; avg 158.258319ms - 3.18131/sec | failed: 2 events; avg 54.453552ms - 3.18131/sec 2023-03-16T16:06:15.903Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #188 for future & fallible event' TIMED OUT after 162.750041ms 2023-03-16T16:06:15.903Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #188 for future & fallible event' ended after running for 629.266633ms -- stats: | ok: 2 events; avg 101.364091ms - 3.17830/sec | time out: 2 events; avg 158.346623ms - 3.17830/sec | failed: 2 events; avg 54.542124ms - 3.17830/sec 2023-03-16T16:06:15.904Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #189 for future & fallible event' TIMED OUT after 163.284578ms 2023-03-16T16:06:15.904Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #189 for future & fallible event' ended after running for 629.545741ms -- stats: | ok: 2 events; avg 101.317152ms - 3.17689/sec | time out: 2 events; avg 158.599645ms - 3.17689/sec | failed: 2 events; avg 54.673806ms - 3.17689/sec 2023-03-16T16:06:15.904Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #190 for future & fallible event' TIMED OUT after 163.50887ms 2023-03-16T16:06:15.904Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #190 for future & fallible event' ended after running for 629.827887ms -- stats: | ok: 2 events; avg 101.266257ms - 3.17547/sec | time out: 2 events; avg 158.699781ms - 3.17547/sec | failed: 2 events; avg 54.767139ms - 3.17547/sec 2023-03-16T16:06:15.904Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #191 for future & fallible event' TIMED OUT after 163.791322ms 2023-03-16T16:06:15.905Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #191 for future & fallible event' ended after running for 630.168343ms -- stats: | ok: 2 events; avg 101.217538ms - 3.17376/sec | time out: 2 events; avg 158.833012ms - 3.17376/sec | failed: 2 events; avg 54.853808ms - 3.17376/sec 2023-03-16T16:06:15.905Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #192 for future & fallible event' TIMED OUT after 163.981564ms 2023-03-16T16:06:15.905Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #192 for future & fallible event' ended after running for 630.414048ms -- stats: | ok: 2 events; avg 101.170301ms - 3.17252/sec | time out: 2 events; avg 158.923119ms - 3.17252/sec | failed: 2 events; avg 54.937311ms - 3.17252/sec 2023-03-16T16:06:15.905Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #193 for future & fallible event' TIMED OUT after 163.636933ms 2023-03-16T16:06:15.905Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #193 for future & fallible event' ended after running for 630.663056ms -- stats: | ok: 2 events; avg 101.713404ms - 3.17127/sec | time out: 2 events; avg 158.741936ms - 3.17127/sec | failed: 2 events; avg 54.658912ms - 3.17127/sec 2023-03-16T16:06:15.905Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #194 for future & fallible event' TIMED OUT after 163.8831ms 2023-03-16T16:06:15.905Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #194 for future & fallible event' ended after running for 630.984214ms -- stats: | ok: 2 events; avg 101.691812ms - 3.16965/sec | time out: 2 events; avg 158.825547ms - 3.16965/sec | failed: 2 events; avg 54.762602ms - 3.16965/sec 2023-03-16T16:06:15.906Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #195 for future & fallible event' TIMED OUT after 164.055618ms 2023-03-16T16:06:15.906Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #195 for future & fallible event' ended after running for 631.237744ms -- stats: | ok: 2 events; avg 101.62323ms - 3.16838/sec | time out: 2 events; avg 158.900857ms - 3.16838/sec | failed: 2 events; avg 54.87965ms - 3.16838/sec 2023-03-16T16:06:15.906Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #196 for future & fallible event' TIMED OUT after 164.246156ms 2023-03-16T16:06:15.906Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #196 for future & fallible event' ended after running for 631.491283ms -- stats: | ok: 2 events; avg 101.577505ms - 3.16711/sec | time out: 2 events; avg 159.014136ms - 3.16711/sec | failed: 2 events; avg 54.975424ms - 3.16711/sec 2023-03-16T16:06:15.906Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #197 for future & fallible event' TIMED OUT after 164.435913ms 2023-03-16T16:06:15.906Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #197 for future & fallible event' ended after running for 631.810886ms -- stats: | ok: 2 events; avg 101.529017ms - 3.16550/sec | time out: 2 events; avg 159.10314ms - 3.16550/sec | failed: 2 events; avg 55.062599ms - 3.16550/sec 2023-03-16T16:06:15.907Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #198 for future & fallible event' TIMED OUT after 164.731898ms 2023-03-16T16:06:15.907Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #198 for future & fallible event' ended after running for 632.097985ms -- stats: | ok: 2 events; avg 101.482064ms - 3.16407/sec | time out: 2 events; avg 159.246415ms - 3.16407/sec | failed: 2 events; avg 55.14551ms - 3.16407/sec 2023-03-16T16:06:15.907Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #199 for future & fallible event' TIMED OUT after 164.922867ms 2023-03-16T16:06:15.907Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #199 for future & fallible event' ended after running for 632.336171ms -- stats: | ok: 2 events; avg 101.435214ms - 3.16287/sec | time out: 2 events; avg 159.334645ms - 3.16287/sec | failed: 2 events; avg 55.230297ms - 3.16287/sec 2023-03-16T16:06:15.907Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #200 for future & fallible event' TIMED OUT after 165.086413ms 2023-03-16T16:06:15.907Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #200 for future & fallible event' ended after running for 632.622442ms -- stats: | ok: 2 events; avg 101.374492ms - 3.16144/sec | time out: 2 events; avg 159.410119ms - 3.16144/sec | failed: 2 events; avg 55.312172ms - 3.16144/sec 2023-03-16T16:06:15.907Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #201 for future & fallible event' TIMED OUT after 165.327632ms 2023-03-16T16:06:15.908Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #201 for future & fallible event' ended after running for 632.862523ms -- stats: | ok: 2 events; avg 101.325504ms - 3.16024/sec | time out: 2 events; avg 159.538478ms - 3.16024/sec | failed: 2 events; avg 55.396348ms - 3.16024/sec 2023-03-16T16:06:15.908Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #202 for future & fallible event' TIMED OUT after 165.431695ms 2023-03-16T16:06:15.908Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #202 for future & fallible event' ended after running for 633.081417ms -- stats: | ok: 2 events; avg 101.277784ms - 3.15915/sec | time out: 2 events; avg 159.582347ms - 3.15915/sec | failed: 2 events; avg 55.4826ms - 3.15915/sec 2023-03-16T16:06:15.908Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #203 for future & fallible event' TIMED OUT after 165.582781ms 2023-03-16T16:06:15.908Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #203 for future & fallible event' ended after running for 633.310085ms -- stats: | ok: 2 events; avg 101.229757ms - 3.15801/sec | time out: 2 events; avg 159.646317ms - 3.15801/sec | failed: 2 events; avg 55.600747ms - 3.15801/sec 2023-03-16T16:06:15.908Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #204 for future & fallible event' TIMED OUT after 165.820175ms 2023-03-16T16:06:15.908Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #204 for future & fallible event' ended after running for 633.629984ms -- stats: | ok: 2 events; avg 101.180807ms - 3.15642/sec | time out: 2 events; avg 159.72805ms - 3.15642/sec | failed: 2 events; avg 55.691943ms - 3.15642/sec 2023-03-16T16:06:15.909Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #205 for future & fallible event' TIMED OUT after 166.059785ms 2023-03-16T16:06:15.909Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #205 for future & fallible event' ended after running for 633.230256ms -- stats: | ok: 2 events; avg 101.348162ms - 3.15841/sec | time out: 2 events; avg 159.835875ms - 3.15841/sec | failed: 2 events; avg 55.238709ms - 3.15841/sec 2023-03-16T16:06:15.909Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #206 for future & fallible event' TIMED OUT after 166.253366ms 2023-03-16T16:06:15.909Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #206 for future & fallible event' ended after running for 633.450313ms -- stats: | ok: 2 events; avg 101.298101ms - 3.15731/sec | time out: 2 events; avg 159.920812ms - 3.15731/sec | failed: 2 events; avg 55.327415ms - 3.15731/sec 2023-03-16T16:06:15.909Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #207 for future & fallible event' TIMED OUT after 166.443403ms 2023-03-16T16:06:15.909Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #207 for future & fallible event' ended after running for 633.782603ms -- stats: | ok: 2 events; avg 101.225033ms - 3.15566/sec | time out: 2 events; avg 160.003871ms - 3.15566/sec | failed: 2 events; avg 55.417344ms - 3.15566/sec 2023-03-16T16:06:15.909Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #208 for future & fallible event' TIMED OUT after 166.72399ms 2023-03-16T16:06:15.910Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #208 for future & fallible event' ended after running for 634.035416ms -- stats: | ok: 2 events; avg 101.17697ms - 3.15440/sec | time out: 2 events; avg 160.159796ms - 3.15440/sec | failed: 2 events; avg 55.504546ms - 3.15440/sec 2023-03-16T16:06:15.910Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #209 for future & fallible event' TIMED OUT after 166.911555ms 2023-03-16T16:06:15.910Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #209 for future & fallible event' ended after running for 634.284244ms -- stats: | ok: 2 events; avg 101.129562ms - 3.15316/sec | time out: 2 events; avg 160.242364ms - 3.15316/sec | failed: 2 events; avg 55.593111ms - 3.15316/sec 2023-03-16T16:06:15.910Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #210 for future & fallible event' TIMED OUT after 167.101497ms 2023-03-16T16:06:15.910Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #210 for future & fallible event' ended after running for 634.594354ms -- stats: | ok: 2 events; avg 101.079971ms - 3.15162/sec | time out: 2 events; avg 160.327137ms - 3.15162/sec | failed: 2 events; avg 55.680431ms - 3.15162/sec 2023-03-16T16:06:15.910Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #211 for future & fallible event' TIMED OUT after 167.362811ms 2023-03-16T16:06:15.911Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #211 for future & fallible event' ended after running for 634.851147ms -- stats: | ok: 2 events; avg 101.033002ms - 3.15034/sec | time out: 2 events; avg 160.449088ms - 3.15034/sec | failed: 2 events; avg 55.769835ms - 3.15034/sec 2023-03-16T16:06:15.911Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #212 for future & fallible event' TIMED OUT after 167.534538ms 2023-03-16T16:06:15.911Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #212 for future & fallible event' ended after running for 635.125433ms -- stats: | ok: 2 events; avg 101.448193ms - 3.14898/sec | time out: 2 events; avg 160.730124ms - 3.14898/sec | failed: 2 events; avg 55.171803ms - 3.14898/sec 2023-03-16T16:06:15.911Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #213 for future & fallible event' TIMED OUT after 167.685197ms 2023-03-16T16:06:15.911Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #213 for future & fallible event' ended after running for 635.352151ms -- stats: | ok: 2 events; avg 101.369463ms - 3.14786/sec | time out: 2 events; avg 160.777301ms - 3.14786/sec | failed: 2 events; avg 55.276375ms - 3.14786/sec 2023-03-16T16:06:15.911Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #214 for future & fallible event' TIMED OUT after 167.914401ms 2023-03-16T16:06:15.911Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #214 for future & fallible event' ended after running for 635.652116ms -- stats: | ok: 2 events; avg 101.318792ms - 3.14638/sec | time out: 2 events; avg 160.914987ms - 3.14638/sec | failed: 2 events; avg 55.416033ms - 3.14638/sec 2023-03-16T16:06:15.912Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #215 for future & fallible event' TIMED OUT after 167.143532ms 2023-03-16T16:06:15.912Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #215 for future & fallible event' ended after running for 635.875601ms -- stats: | ok: 2 events; avg 101.26999ms - 3.14527/sec | time out: 2 events; avg 160.519391ms - 3.14527/sec | failed: 2 events; avg 55.509768ms - 3.14527/sec 2023-03-16T16:06:15.912Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #216 for future & fallible event' TIMED OUT after 167.103943ms 2023-03-16T16:06:15.912Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #216 for future & fallible event' ended after running for 636.097347ms -- stats: | ok: 2 events; avg 101.221591ms - 3.14417/sec | time out: 2 events; avg 160.489351ms - 3.14417/sec | failed: 2 events; avg 56.131706ms - 3.14417/sec 2023-03-16T16:06:15.912Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #217 for future & fallible event' TIMED OUT after 167.254387ms 2023-03-16T16:06:15.912Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #217 for future & fallible event' ended after running for 636.384796ms -- stats: | ok: 2 events; avg 101.174138ms - 3.14275/sec | time out: 2 events; avg 160.55268ms - 3.14275/sec | failed: 2 events; avg 56.257337ms - 3.14275/sec 2023-03-16T16:06:15.912Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #218 for future & fallible event' TIMED OUT after 167.476333ms 2023-03-16T16:06:15.913Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #218 for future & fallible event' ended after running for 636.613348ms -- stats: | ok: 2 events; avg 101.125941ms - 3.14162/sec | time out: 2 events; avg 160.509452ms - 3.14162/sec | failed: 2 events; avg 56.4817ms - 3.14162/sec 2023-03-16T16:06:15.913Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #219 for future & fallible event' TIMED OUT after 167.441126ms 2023-03-16T16:06:15.913Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #219 for future & fallible event' ended after running for 636.857459ms -- stats: | ok: 2 events; avg 101.080261ms - 3.14042/sec | time out: 2 events; avg 160.475999ms - 3.14042/sec | failed: 2 events; avg 56.593206ms - 3.14042/sec 2023-03-16T16:06:15.913Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #220 for future & fallible event' TIMED OUT after 167.570853ms 2023-03-16T16:06:15.913Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #220 for future & fallible event' ended after running for 637.080363ms -- stats: | ok: 2 events; avg 101.134196ms - 3.13932/sec | time out: 2 events; avg 160.500646ms - 3.13932/sec | failed: 2 events; avg 56.715429ms - 3.13932/sec 2023-03-16T16:06:15.913Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #221 for future & fallible event' TIMED OUT after 167.796293ms 2023-03-16T16:06:15.913Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #221 for future & fallible event' ended after running for 637.392272ms -- stats: | ok: 2 events; avg 101.079836ms - 3.13779/sec | time out: 2 events; avg 160.601258ms - 3.13779/sec | failed: 2 events; avg 56.822564ms - 3.13779/sec 2023-03-16T16:06:15.914Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #222 for future & fallible event' TIMED OUT after 167.910486ms 2023-03-16T16:06:15.914Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #222 for future & fallible event' ended after running for 637.645847ms -- stats: | ok: 2 events; avg 101.03108ms - 3.13654/sec | time out: 2 events; avg 160.656467ms - 3.13654/sec | failed: 2 events; avg 56.916453ms - 3.13654/sec 2023-03-16T16:06:15.914Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #15 for future & fallible event' TIMED OUT after 167.629814ms 2023-03-16T16:06:15.914Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #15 for future & fallible event' ended after running for 650.099279ms -- stats: | ok: 2 events; avg 101.151958ms - 3.07645/sec | time out: 2 events; avg 159.853667ms - 3.07645/sec | failed: 2 events; avg 57.042561ms - 3.07645/sec 2023-03-16T16:06:15.914Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #223 for future & fallible event' TIMED OUT after 167.72685ms 2023-03-16T16:06:15.914Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #223 for future & fallible event' ended after running for 638.262518ms -- stats: | ok: 2 events; avg 101.595879ms - 3.13351/sec | time out: 2 events; avg 160.554335ms - 3.13351/sec | failed: 2 events; avg 56.756094ms - 3.13351/sec 2023-03-16T16:06:15.914Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #224 for future & fallible event' TIMED OUT after 168.001537ms 2023-03-16T16:06:15.915Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #224 for future & fallible event' ended after running for 638.526038ms -- stats: | ok: 2 events; avg 101.546183ms - 3.13221/sec | time out: 2 events; avg 160.681263ms - 3.13221/sec | failed: 2 events; avg 56.850791ms - 3.13221/sec 2023-03-16T16:06:15.915Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #225 for future & fallible event' TIMED OUT after 168.225383ms 2023-03-16T16:06:15.915Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #225 for future & fallible event' ended after running for 638.798094ms -- stats: | ok: 2 events; avg 101.445928ms - 3.13088/sec | time out: 2 events; avg 160.807014ms - 3.13088/sec | failed: 2 events; avg 56.936562ms - 3.13088/sec 2023-03-16T16:06:15.915Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #226 for future & fallible event' TIMED OUT after 168.41755ms 2023-03-16T16:06:15.915Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #226 for future & fallible event' ended after running for 639.104279ms -- stats: | ok: 2 events; avg 100.678876ms - 3.12938/sec | time out: 2 events; avg 160.912335ms - 3.12938/sec | failed: 2 events; avg 57.024904ms - 3.12938/sec 2023-03-16T16:06:15.915Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #227 for future & fallible event' TIMED OUT after 168.714708ms 2023-03-16T16:06:15.916Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #227 for future & fallible event' ended after running for 639.380936ms -- stats: | ok: 2 events; avg 100.610882ms - 3.12803/sec | time out: 2 events; avg 161.776125ms - 3.12803/sec | failed: 2 events; avg 57.108343ms - 3.12803/sec 2023-03-16T16:06:15.916Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #228 for future & fallible event' TIMED OUT after 168.915858ms 2023-03-16T16:06:15.916Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #228 for future & fallible event' ended after running for 639.64011ms -- stats: | ok: 2 events; avg 101.267882ms - 3.12676/sec | time out: 2 events; avg 161.886781ms - 3.12676/sec | failed: 2 events; avg 56.480318ms - 3.12676/sec 2023-03-16T16:06:15.916Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #229 for future & fallible event' TIMED OUT after 169.109539ms 2023-03-16T16:06:15.916Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #229 for future & fallible event' ended after running for 639.965097ms -- stats: | ok: 2 events; avg 101.214468ms - 3.12517/sec | time out: 2 events; avg 161.950678ms - 3.12517/sec | failed: 2 events; avg 56.562852ms - 3.12517/sec 2023-03-16T16:06:15.917Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #230 for future & fallible event' TIMED OUT after 169.688116ms 2023-03-16T16:06:15.917Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #230 for future & fallible event' ended after running for 640.540485ms -- stats: | ok: 2 events; avg 101.084158ms - 3.12236/sec | time out: 2 events; avg 162.243813ms - 3.12236/sec | failed: 2 events; avg 56.678899ms - 3.12236/sec 2023-03-16T16:06:15.917Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #231 for future & fallible event' TIMED OUT after 169.829106ms 2023-03-16T16:06:15.917Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #231 for future & fallible event' ended after running for 640.772236ms -- stats: | ok: 2 events; avg 101.027474ms - 3.12123/sec | time out: 2 events; avg 162.381858ms - 3.12123/sec | failed: 2 events; avg 56.763858ms - 3.12123/sec 2023-03-16T16:06:15.917Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #232 for future & fallible event' TIMED OUT after 170.083949ms 2023-03-16T16:06:15.918Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #232 for future & fallible event' ended after running for 641.096562ms -- stats: | ok: 2 events; avg 100.981757ms - 3.11965/sec | time out: 2 events; avg 162.505254ms - 3.11965/sec | failed: 2 events; avg 56.886822ms - 3.11965/sec 2023-03-16T16:06:15.918Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #233 for future & fallible event' TIMED OUT after 170.135822ms 2023-03-16T16:06:15.918Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #233 for future & fallible event' ended after running for 641.32579ms -- stats: | ok: 2 events; avg 100.930601ms - 3.11854/sec | time out: 2 events; avg 162.523806ms - 3.11854/sec | failed: 2 events; avg 56.97424ms - 3.11854/sec 2023-03-16T16:06:15.918Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #234 for future & fallible event' TIMED OUT after 170.292246ms 2023-03-16T16:06:15.918Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #234 for future & fallible event' ended after running for 641.548314ms -- stats: | ok: 2 events; avg 100.885138ms - 3.11746/sec | time out: 2 events; avg 162.595809ms - 3.11746/sec | failed: 2 events; avg 57.120927ms - 3.11746/sec 2023-03-16T16:06:15.918Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #235 for future & fallible event' TIMED OUT after 170.515756ms 2023-03-16T16:06:15.918Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #235 for future & fallible event' ended after running for 641.839983ms -- stats: | ok: 2 events; avg 100.836895ms - 3.11604/sec | time out: 2 events; avg 162.701294ms - 3.11604/sec | failed: 2 events; avg 57.206083ms - 3.11604/sec 2023-03-16T16:06:15.918Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #236 for future & fallible event' TIMED OUT after 170.695116ms 2023-03-16T16:06:15.919Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #236 for future & fallible event' ended after running for 642.071332ms -- stats: | ok: 2 events; avg 100.78942ms - 3.11492/sec | time out: 2 events; avg 162.7848ms - 3.11492/sec | failed: 2 events; avg 57.292864ms - 3.11492/sec 2023-03-16T16:06:15.919Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #7 for future & fallible event' TIMED OUT after 170.862216ms 2023-03-16T16:06:15.919Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #7 for future & fallible event' ended after running for 655.235378ms -- stats: | ok: 2 events; avg 101.42231ms - 3.05234/sec | time out: 2 events; avg 161.576122ms - 3.05234/sec | failed: 2 events; avg 57.573594ms - 3.05234/sec 2023-03-16T16:06:15.919Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #8 for future & fallible event' TIMED OUT after 171.052594ms 2023-03-16T16:06:15.919Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #8 for future & fallible event' ended after running for 655.551418ms -- stats: | ok: 2 events; avg 101.388484ms - 3.05087/sec | time out: 2 events; avg 161.677554ms - 3.05087/sec | failed: 2 events; avg 57.66131ms - 3.05087/sec 2023-03-16T16:06:15.919Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #9 for future & fallible event' TIMED OUT after 171.355817ms 2023-03-16T16:06:15.920Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #9 for future & fallible event' ended after running for 655.870455ms -- stats: | ok: 2 events; avg 101.354748ms - 3.04938/sec | time out: 2 events; avg 161.819428ms - 3.04938/sec | failed: 2 events; avg 57.750411ms - 3.04938/sec 2023-03-16T16:06:15.920Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #10 for future & fallible event' TIMED OUT after 171.484437ms 2023-03-16T16:06:15.920Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #10 for future & fallible event' ended after running for 656.144571ms -- stats: | ok: 2 events; avg 101.319812ms - 3.04811/sec | time out: 2 events; avg 161.851346ms - 3.04811/sec | failed: 2 events; avg 57.856716ms - 3.04811/sec 2023-03-16T16:06:15.920Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #11 for future & fallible event' TIMED OUT after 171.686909ms 2023-03-16T16:06:15.920Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #11 for future & fallible event' ended after running for 656.488836ms -- stats: | ok: 2 events; avg 101.286337ms - 3.04651/sec | time out: 2 events; avg 161.930501ms - 3.04651/sec | failed: 2 events; avg 57.990544ms - 3.04651/sec 2023-03-16T16:06:15.920Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #12 for future & fallible event' TIMED OUT after 171.979446ms 2023-03-16T16:06:15.921Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #12 for future & fallible event' ended after running for 656.789788ms -- stats: | ok: 2 events; avg 101.252593ms - 3.04511/sec | time out: 2 events; avg 162.064388ms - 3.04511/sec | failed: 2 events; avg 58.092743ms - 3.04511/sec 2023-03-16T16:06:15.921Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #13 for future & fallible event' TIMED OUT after 172.201903ms 2023-03-16T16:06:15.921Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #13 for future & fallible event' ended after running for 657.07449ms -- stats: | ok: 2 events; avg 101.219267ms - 3.04379/sec | time out: 2 events; avg 162.162155ms - 3.04379/sec | failed: 2 events; avg 58.182135ms - 3.04379/sec 2023-03-16T16:06:15.921Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #14 for future & fallible event' TIMED OUT after 172.419599ms 2023-03-16T16:06:15.921Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #14 for future & fallible event' ended after running for 657.415863ms -- stats: | ok: 2 events; avg 101.185538ms - 3.04221/sec | time out: 2 events; avg 162.259996ms - 3.04221/sec | failed: 2 events; avg 58.273844ms - 3.04221/sec 2023-03-16T16:06:15.921Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #237 for future & fallible event' TIMED OUT after 172.722215ms 2023-03-16T16:06:15.922Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #237 for future & fallible event' ended after running for 645.038847ms -- stats: | ok: 2 events; avg 100.948177ms - 3.10059/sec | time out: 2 events; avg 164.363027ms - 3.10059/sec | failed: 2 events; avg 57.00963ms - 3.10059/sec 2023-03-16T16:06:15.922Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #238 for future & fallible event' TIMED OUT after 172.988898ms 2023-03-16T16:06:15.922Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #238 for future & fallible event' ended after running for 645.374761ms -- stats: | ok: 2 events; avg 100.883007ms - 3.09897/sec | time out: 2 events; avg 164.490104ms - 3.09897/sec | failed: 2 events; avg 57.092153ms - 3.09897/sec 2023-03-16T16:06:15.922Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #239 for future & fallible event' TIMED OUT after 173.227455ms 2023-03-16T16:06:15.922Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #239 for future & fallible event' ended after running for 645.7691ms -- stats: | ok: 2 events; avg 100.828834ms - 3.09708/sec | time out: 2 events; avg 164.602757ms - 3.09708/sec | failed: 2 events; avg 57.17646ms - 3.09708/sec 2023-03-16T16:06:15.923Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #240 for future & fallible event' TIMED OUT after 173.572738ms 2023-03-16T16:06:15.923Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #240 for future & fallible event' ended after running for 646.068038ms -- stats: | ok: 2 events; avg 100.78232ms - 3.09565/sec | time out: 2 events; avg 164.770424ms - 3.09565/sec | failed: 2 events; avg 57.284147ms - 3.09565/sec 2023-03-16T16:06:15.923Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #241 for future & fallible event' TIMED OUT after 173.811074ms 2023-03-16T16:06:15.923Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #241 for future & fallible event' ended after running for 646.360318ms -- stats: | ok: 2 events; avg 100.701287ms - 3.09425/sec | time out: 2 events; avg 164.883107ms - 3.09425/sec | failed: 2 events; avg 57.36994ms - 3.09425/sec 2023-03-16T16:06:15.923Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #242 for future & fallible event' TIMED OUT after 174.223428ms 2023-03-16T16:06:15.924Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #242 for future & fallible event' ended after running for 646.807047ms -- stats: | ok: 2 events; avg 100.650266ms - 3.09211/sec | time out: 2 events; avg 165.095523ms - 3.09211/sec | failed: 2 events; avg 57.454631ms - 3.09211/sec 2023-03-16T16:06:15.924Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #243 for future & fallible event' TIMED OUT after 174.372027ms 2023-03-16T16:06:15.924Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #243 for future & fallible event' ended after running for 647.007535ms -- stats: | ok: 2 events; avg 100.602746ms - 3.09115/sec | time out: 2 events; avg 165.162429ms - 3.09115/sec | failed: 2 events; avg 57.564851ms - 3.09115/sec 2023-03-16T16:06:15.924Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #244 for future & fallible event' TIMED OUT after 174.511183ms 2023-03-16T16:06:15.924Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #244 for future & fallible event' ended after running for 647.15446ms -- stats: | ok: 2 events; avg 100.527301ms - 3.09045/sec | time out: 2 events; avg 165.163487ms - 3.09045/sec | failed: 2 events; avg 57.708755ms - 3.09045/sec 2023-03-16T16:06:15.924Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #245 for future & fallible event' TIMED OUT after 174.734257ms 2023-03-16T16:06:15.924Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #245 for future & fallible event' ended after running for 647.44197ms -- stats: | ok: 2 events; avg 100.479692ms - 3.08908/sec | time out: 2 events; avg 165.268391ms - 3.08908/sec | failed: 2 events; avg 57.797991ms - 3.08908/sec 2023-03-16T16:06:15.924Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #246 for future & fallible event' TIMED OUT after 174.737786ms 2023-03-16T16:06:15.925Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #246 for future & fallible event' ended after running for 647.628237ms -- stats: | ok: 2 events; avg 101.020142ms - 3.08819/sec | time out: 2 events; avg 165.261313ms - 3.08819/sec | failed: 2 events; avg 57.358064ms - 3.08819/sec 2023-03-16T16:06:15.925Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #247 for future & fallible event' TIMED OUT after 174.857318ms 2023-03-16T16:06:15.925Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #247 for future & fallible event' ended after running for 647.808499ms -- stats: | ok: 2 events; avg 100.974284ms - 3.08733/sec | time out: 2 events; avg 165.314645ms - 3.08733/sec | failed: 2 events; avg 57.444431ms - 3.08733/sec 2023-03-16T16:06:15.925Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #0 for future & fallible event' TIMED OUT after 174.980779ms 2023-03-16T16:06:15.925Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #0 for future & fallible event' ended after running for 661.618239ms -- stats: | ok: 2 events; avg 101.114169ms - 3.02289/sec | time out: 2 events; avg 165.275335ms - 3.02289/sec | failed: 2 events; avg 57.299234ms - 3.02289/sec 2023-03-16T16:06:15.925Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #1 for future & fallible event' TIMED OUT after 175.10176ms 2023-03-16T16:06:15.925Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #1 for future & fallible event' ended after running for 661.836065ms -- stats: | ok: 2 events; avg 101.08003ms - 3.02190/sec | time out: 2 events; avg 165.257156ms - 3.02190/sec | failed: 2 events; avg 57.389706ms - 3.02190/sec 2023-03-16T16:06:15.925Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #2 for future & fallible event' TIMED OUT after 175.276579ms 2023-03-16T16:06:15.926Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #2 for future & fallible event' ended after running for 662.036172ms -- stats: | ok: 2 events; avg 101.046689ms - 3.02098/sec | time out: 2 events; avg 165.328085ms - 3.02098/sec | failed: 2 events; avg 57.549655ms - 3.02098/sec 2023-03-16T16:06:15.926Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #3 for future & fallible event' TIMED OUT after 175.348317ms 2023-03-16T16:06:15.926Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #3 for future & fallible event' ended after running for 662.230675ms -- stats: | ok: 2 events; avg 101.013258ms - 3.02010/sec | time out: 2 events; avg 165.353119ms - 3.02010/sec | failed: 2 events; avg 57.674639ms - 3.02010/sec 2023-03-16T16:06:15.926Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #4 for future & fallible event' TIMED OUT after 175.492906ms 2023-03-16T16:06:15.926Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #4 for future & fallible event' ended after running for 662.445789ms -- stats: | ok: 2 events; avg 101.652555ms - 3.01911/sec | time out: 2 events; avg 165.412158ms - 3.01911/sec | failed: 2 events; avg 57.094514ms - 3.01911/sec 2023-03-16T16:06:15.926Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #5 for future & fallible event' TIMED OUT after 175.629204ms 2023-03-16T16:06:15.926Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #5 for future & fallible event' ended after running for 662.69363ms -- stats: | ok: 2 events; avg 101.622224ms - 3.01799/sec | time out: 2 events; avg 165.469944ms - 3.01799/sec | failed: 2 events; avg 57.180341ms - 3.01799/sec 2023-03-16T16:06:15.926Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #6 for future & fallible event' TIMED OUT after 175.813362ms 2023-03-16T16:06:15.927Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #6 for future & fallible event' ended after running for 662.892834ms -- stats: | ok: 2 events; avg 101.558954ms - 3.01708/sec | time out: 2 events; avg 165.548205ms - 3.01708/sec | failed: 2 events; avg 57.269264ms - 3.01708/sec 2023-03-16T16:06:15.927Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #33 for future & fallible event' TIMED OUT after 175.944693ms 2023-03-16T16:06:15.927Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #33 for future & fallible event' ended after running for 661.457064ms -- stats: | ok: 2 events; avg 101.332933ms - 3.02363/sec | time out: 2 events; avg 164.419353ms - 3.02363/sec | failed: 2 events; avg 58.687307ms - 3.02363/sec 2023-03-16T16:06:15.927Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #34 for future & fallible event' TIMED OUT after 176.079758ms 2023-03-16T16:06:15.927Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #34 for future & fallible event' ended after running for 661.658739ms -- stats: | ok: 2 events; avg 101.296365ms - 3.02271/sec | time out: 2 events; avg 164.478928ms - 3.02271/sec | failed: 2 events; avg 58.778629ms - 3.02271/sec 2023-03-16T16:06:15.927Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #35 for future & fallible event' TIMED OUT after 176.210744ms 2023-03-16T16:06:15.927Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #35 for future & fallible event' ended after running for 661.898896ms -- stats: | ok: 2 events; avg 101.262368ms - 3.02161/sec | time out: 2 events; avg 164.532572ms - 3.02161/sec | failed: 2 events; avg 58.870018ms - 3.02161/sec 2023-03-16T16:06:15.927Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #36 for future & fallible event' TIMED OUT after 176.29199ms 2023-03-16T16:06:15.927Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #36 for future & fallible event' ended after running for 662.10565ms -- stats: | ok: 2 events; avg 101.227134ms - 3.02067/sec | time out: 2 events; avg 164.562717ms - 3.02067/sec | failed: 2 events; avg 58.962744ms - 3.02067/sec 2023-03-16T16:06:15.928Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #37 for future & fallible event' TIMED OUT after 176.391798ms 2023-03-16T16:06:15.928Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #37 for future & fallible event' ended after running for 662.330858ms -- stats: | ok: 2 events; avg 101.261392ms - 3.01964/sec | time out: 2 events; avg 164.57656ms - 3.01964/sec | failed: 2 events; avg 59.034385ms - 3.01964/sec 2023-03-16T16:06:15.928Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #38 for future & fallible event' TIMED OUT after 176.534422ms 2023-03-16T16:06:15.928Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #38 for future & fallible event' ended after running for 662.546545ms -- stats: | ok: 2 events; avg 101.229742ms - 3.01866/sec | time out: 2 events; avg 164.635241ms - 3.01866/sec | failed: 2 events; avg 59.178807ms - 3.01866/sec 2023-03-16T16:06:15.928Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #39 for future & fallible event' TIMED OUT after 176.034135ms 2023-03-16T16:06:15.928Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #39 for future & fallible event' ended after running for 662.822164ms -- stats: | ok: 2 events; avg 101.053342ms - 3.01740/sec | time out: 2 events; avg 164.395839ms - 3.01740/sec | failed: 2 events; avg 59.274435ms - 3.01740/sec 2023-03-16T16:06:15.928Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #40 for future & fallible event' TIMED OUT after 175.776074ms 2023-03-16T16:06:15.929Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #40 for future & fallible event' ended after running for 663.045629ms -- stats: | ok: 2 events; avg 101.005509ms - 3.01638/sec | time out: 2 events; avg 164.378136ms - 3.01638/sec | failed: 2 events; avg 59.909236ms - 3.01638/sec 2023-03-16T16:06:15.929Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #41 for future & fallible event' TIMED OUT after 175.915425ms 2023-03-16T16:06:15.929Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #41 for future & fallible event' ended after running for 663.262498ms -- stats: | ok: 2 events; avg 100.967035ms - 3.01540/sec | time out: 2 events; avg 164.446086ms - 3.01540/sec | failed: 2 events; avg 60.015164ms - 3.01540/sec 2023-03-16T16:06:15.929Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #97 for future & fallible event' TIMED OUT after 175.256995ms 2023-03-16T16:06:15.929Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #97 for future & fallible event' ended after running for 659.244194ms -- stats: | ok: 2 events; avg 100.94206ms - 3.03378/sec | time out: 2 events; avg 163.334042ms - 3.03378/sec | failed: 2 events; avg 61.088122ms - 3.03378/sec 2023-03-16T16:06:15.929Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #248 for future & fallible event' TIMED OUT after 175.256479ms 2023-03-16T16:06:15.929Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #248 for future & fallible event' ended after running for 652.290003ms -- stats: | ok: 2 events; avg 101.518825ms - 3.06612/sec | time out: 2 events; avg 165.483579ms - 3.06612/sec | failed: 2 events; avg 58.86611ms - 3.06612/sec 2023-03-16T16:06:15.929Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #249 for future & fallible event' TIMED OUT after 175.362718ms 2023-03-16T16:06:15.930Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #249 for future & fallible event' ended after running for 652.543253ms -- stats: | ok: 2 events; avg 101.474166ms - 3.06493/sec | time out: 2 events; avg 165.5173ms - 3.06493/sec | failed: 2 events; avg 59.022713ms - 3.06493/sec 2023-03-16T16:06:15.930Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #250 for future & fallible event' TIMED OUT after 175.453453ms 2023-03-16T16:06:15.930Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #250 for future & fallible event' ended after running for 652.771214ms -- stats: | ok: 2 events; avg 101.405285ms - 3.06386/sec | time out: 2 events; avg 165.555984ms - 3.06386/sec | failed: 2 events; avg 59.184257ms - 3.06386/sec 2023-03-16T16:06:15.930Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #251 for future & fallible event' TIMED OUT after 175.605771ms 2023-03-16T16:06:15.930Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #251 for future & fallible event' ended after running for 652.975476ms -- stats: | ok: 2 events; avg 101.343803ms - 3.06290/sec | time out: 2 events; avg 165.64399ms - 3.06290/sec | failed: 2 events; avg 59.309069ms - 3.06290/sec 2023-03-16T16:06:15.930Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #252 for future & fallible event' TIMED OUT after 175.807041ms 2023-03-16T16:06:15.930Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #252 for future & fallible event' ended after running for 653.217923ms -- stats: | ok: 2 events; avg 101.293832ms - 3.06177/sec | time out: 2 events; avg 165.734082ms - 3.06177/sec | failed: 2 events; avg 59.398662ms - 3.06177/sec 2023-03-16T16:06:15.931Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #253 for future & fallible event' TIMED OUT after 175.958467ms 2023-03-16T16:06:15.931Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #253 for future & fallible event' ended after running for 653.420521ms -- stats: | ok: 2 events; avg 101.245217ms - 3.06082/sec | time out: 2 events; avg 165.799409ms - 3.06082/sec | failed: 2 events; avg 59.488036ms - 3.06082/sec 2023-03-16T16:06:15.931Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #254 for future & fallible event' TIMED OUT after 176.09847ms 2023-03-16T16:06:15.931Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #254 for future & fallible event' ended after running for 653.622488ms -- stats: | ok: 2 events; avg 101.198286ms - 3.05987/sec | time out: 2 events; avg 165.857926ms - 3.05987/sec | failed: 2 events; avg 59.579402ms - 3.05987/sec 2023-03-16T16:06:15.931Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #255 for future & fallible event' TIMED OUT after 176.239375ms 2023-03-16T16:06:15.931Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #255 for future & fallible event' ended after running for 653.822915ms -- stats: | ok: 2 events; avg 101.150438ms - 3.05893/sec | time out: 2 events; avg 165.916651ms - 3.05893/sec | failed: 2 events; avg 59.668288ms - 3.05893/sec 2023-03-16T16:06:15.931Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #16 for future & fallible event' TIMED OUT after 176.435918ms 2023-03-16T16:06:15.931Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #16 for future & fallible event' ended after running for 667.505194ms -- stats: | ok: 2 events; avg 101.524621ms - 2.99623/sec | time out: 2 events; avg 165.387109ms - 2.99623/sec | failed: 2 events; avg 59.913129ms - 2.99623/sec 2023-03-16T16:06:15.932Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #26 for future & fallible event' TIMED OUT after 176.582823ms 2023-03-16T16:06:15.932Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #26 for future & fallible event' ended after running for 667.413496ms -- stats: | ok: 2 events; avg 101.371452ms - 2.99664/sec | time out: 2 events; avg 165.046602ms - 2.99664/sec | failed: 2 events; avg 60.455937ms - 2.99664/sec 2023-03-16T16:06:15.932Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #44 for future & fallible event' TIMED OUT after 176.664536ms 2023-03-16T16:06:15.932Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #44 for future & fallible event' ended after running for 666.295876ms -- stats: | ok: 2 events; avg 101.289064ms - 3.00167/sec | time out: 2 events; avg 165.566504ms - 3.00167/sec | failed: 2 events; avg 60.126819ms - 3.00167/sec 2023-03-16T16:06:15.932Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #45 for future & fallible event' TIMED OUT after 176.768444ms 2023-03-16T16:06:15.932Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #45 for future & fallible event' ended after running for 666.506684ms -- stats: | ok: 2 events; avg 101.059742ms - 3.00072/sec | time out: 2 events; avg 165.618896ms - 3.00072/sec | failed: 2 events; avg 60.214791ms - 3.00072/sec 2023-03-16T16:06:15.932Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #46 for future & fallible event' TIMED OUT after 176.965473ms 2023-03-16T16:06:15.932Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #46 for future & fallible event' ended after running for 666.770885ms -- stats: | ok: 2 events; avg 101.762772ms - 2.99953/sec | time out: 2 events; avg 165.907577ms - 2.99953/sec | failed: 2 events; avg 59.575155ms - 2.99953/sec 2023-03-16T16:06:15.933Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #47 for future & fallible event' TIMED OUT after 176.975783ms 2023-03-16T16:06:15.933Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #47 for future & fallible event' ended after running for 666.978862ms -- stats: | ok: 2 events; avg 101.727247ms - 2.99860/sec | time out: 2 events; avg 165.87016ms - 2.99860/sec | failed: 2 events; avg 59.748501ms - 2.99860/sec 2023-03-16T16:06:15.933Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #48 for future & fallible event' TIMED OUT after 177.108548ms 2023-03-16T16:06:15.933Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #48 for future & fallible event' ended after running for 667.171109ms -- stats: | ok: 2 events; avg 101.605289ms - 2.99773/sec | time out: 2 events; avg 165.957332ms - 2.99773/sec | failed: 2 events; avg 59.855435ms - 2.99773/sec 2023-03-16T16:06:15.933Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #49 for future & fallible event' TIMED OUT after 177.252801ms 2023-03-16T16:06:15.933Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #49 for future & fallible event' ended after running for 667.391953ms -- stats: | ok: 2 events; avg 101.523422ms - 2.99674/sec | time out: 2 events; avg 166.021705ms - 2.99674/sec | failed: 2 events; avg 60.005061ms - 2.99674/sec 2023-03-16T16:06:15.933Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #50 for future & fallible event' TIMED OUT after 177.448668ms 2023-03-16T16:06:15.933Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #50 for future & fallible event' ended after running for 667.651707ms -- stats: | ok: 2 events; avg 101.450659ms - 2.99557/sec | time out: 2 events; avg 166.181862ms - 2.99557/sec | failed: 2 events; avg 60.092606ms - 2.99557/sec 2023-03-16T16:06:15.934Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #51 for future & fallible event' TIMED OUT after 177.587568ms 2023-03-16T16:06:15.934Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #51 for future & fallible event' ended after running for 667.855167ms -- stats: | ok: 2 events; avg 101.349667ms - 2.99466/sec | time out: 2 events; avg 166.285455ms - 2.99466/sec | failed: 2 events; avg 60.17229ms - 2.99466/sec 2023-03-16T16:06:15.934Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #52 for future & fallible event' TIMED OUT after 177.852441ms 2023-03-16T16:06:15.934Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #52 for future & fallible event' ended after running for 668.190305ms -- stats: | ok: 2 events; avg 101.275958ms - 2.99316/sec | time out: 2 events; avg 166.452527ms - 2.99316/sec | failed: 2 events; avg 60.255073ms - 2.99316/sec 2023-03-16T16:06:15.934Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #53 for future & fallible event' TIMED OUT after 177.922996ms 2023-03-16T16:06:15.934Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #53 for future & fallible event' ended after running for 668.455268ms -- stats: | ok: 2 events; avg 101.355001ms - 2.99197/sec | time out: 2 events; avg 167.947561ms - 2.99197/sec | failed: 2 events; avg 58.789108ms - 2.99197/sec 2023-03-16T16:06:15.934Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #54 for future & fallible event' TIMED OUT after 178.127559ms 2023-03-16T16:06:15.935Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #54 for future & fallible event' ended after running for 668.67176ms -- stats: | ok: 2 events; avg 101.236179ms - 2.99100/sec | time out: 2 events; avg 168.053299ms - 2.99100/sec | failed: 2 events; avg 58.910746ms - 2.99100/sec 2023-03-16T16:06:15.935Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #55 for future & fallible event' TIMED OUT after 178.261351ms 2023-03-16T16:06:15.935Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #55 for future & fallible event' ended after running for 668.862083ms -- stats: | ok: 2 events; avg 101.190373ms - 2.99015/sec | time out: 2 events; avg 168.174058ms - 2.99015/sec | failed: 2 events; avg 59.000567ms - 2.99015/sec 2023-03-16T16:06:15.935Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #56 for future & fallible event' TIMED OUT after 178.416206ms 2023-03-16T16:06:15.935Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #56 for future & fallible event' ended after running for 669.081397ms -- stats: | ok: 2 events; avg 101.153322ms - 2.98917/sec | time out: 2 events; avg 168.249711ms - 2.98917/sec | failed: 2 events; avg 59.111968ms - 2.98917/sec 2023-03-16T16:06:15.935Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #42 for future & fallible event' TIMED OUT after 178.549431ms 2023-03-16T16:06:15.935Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #42 for future & fallible event' ended after running for 669.775567ms -- stats: | ok: 2 events; avg 101.371214ms - 2.98607/sec | time out: 2 events; avg 165.757149ms - 2.98607/sec | failed: 2 events; avg 60.781475ms - 2.98607/sec 2023-03-16T16:06:15.935Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #43 for future & fallible event' TIMED OUT after 178.749258ms 2023-03-16T16:06:15.936Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #43 for future & fallible event' ended after running for 669.976606ms -- stats: | ok: 2 events; avg 101.330899ms - 2.98518/sec | time out: 2 events; avg 166.614801ms - 2.98518/sec | failed: 2 events; avg 60.869649ms - 2.98518/sec 2023-03-16T16:06:15.936Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #93 for future & fallible event' TIMED OUT after 178.884649ms 2023-03-16T16:06:15.936Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #93 for future & fallible event' ended after running for 666.105453ms -- stats: | ok: 2 events; avg 101.082183ms - 3.00253/sec | time out: 2 events; avg 165.192142ms - 3.00253/sec | failed: 2 events; avg 62.494561ms - 3.00253/sec 2023-03-16T16:06:15.936Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #94 for future & fallible event' TIMED OUT after 179.018256ms 2023-03-16T16:06:15.936Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #94 for future & fallible event' ended after running for 666.310015ms -- stats: | ok: 2 events; avg 101.045102ms - 3.00161/sec | time out: 2 events; avg 165.270865ms - 3.00161/sec | failed: 2 events; avg 62.580362ms - 3.00161/sec 2023-03-16T16:06:15.936Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #95 for future & fallible event' TIMED OUT after 179.156524ms 2023-03-16T16:06:15.936Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #95 for future & fallible event' ended after running for 666.574011ms -- stats: | ok: 2 events; avg 101.011157ms - 3.00042/sec | time out: 2 events; avg 165.308416ms - 3.00042/sec | failed: 2 events; avg 62.664747ms - 3.00042/sec 2023-03-16T16:06:15.936Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #96 for future & fallible event' TIMED OUT after 179.379773ms 2023-03-16T16:06:15.937Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #96 for future & fallible event' ended after running for 666.797566ms -- stats: | ok: 2 events; avg 100.976124ms - 2.99941/sec | time out: 2 events; avg 165.40736ms - 2.99941/sec | failed: 2 events; avg 62.776253ms - 2.99941/sec 2023-03-16T16:06:15.941Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #32 for future & fallible event' TIMED OUT after 183.748077ms 2023-03-16T16:06:15.941Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #32 for future & fallible event' ended after running for 675.885871ms -- stats: | ok: 2 events; avg 101.320177ms - 2.95908/sec | time out: 2 events; avg 171.903566ms - 2.95908/sec | failed: 2 events; avg 58.367878ms - 2.95908/sec 2023-03-16T16:06:15.941Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #57 for future & fallible event' TIMED OUT after 184.050297ms 2023-03-16T16:06:15.942Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #57 for future & fallible event' ended after running for 675.52294ms -- stats: | ok: 2 events; avg 101.119503ms - 2.96067/sec | time out: 2 events; avg 171.061873ms - 2.96067/sec | failed: 2 events; avg 59.571028ms - 2.96067/sec 2023-03-16T16:06:15.942Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #58 for future & fallible event' TIMED OUT after 184.185698ms 2023-03-16T16:06:15.942Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #58 for future & fallible event' ended after running for 675.726008ms -- stats: | ok: 2 events; avg 101.083979ms - 2.95978/sec | time out: 2 events; avg 171.122044ms - 2.95978/sec | failed: 2 events; avg 59.656613ms - 2.95978/sec 2023-03-16T16:06:15.942Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #59 for future & fallible event' TIMED OUT after 184.320338ms 2023-03-16T16:06:15.942Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #59 for future & fallible event' ended after running for 675.928521ms -- stats: | ok: 2 events; avg 101.050086ms - 2.95889/sec | time out: 2 events; avg 171.183109ms - 2.95889/sec | failed: 2 events; avg 59.743553ms - 2.95889/sec 2023-03-16T16:06:15.942Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #60 for future & fallible event' TIMED OUT after 184.332007ms 2023-03-16T16:06:15.942Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #60 for future & fallible event' ended after running for 676.16923ms -- stats: | ok: 2 events; avg 101.016529ms - 2.95784/sec | time out: 2 events; avg 171.182767ms - 2.95784/sec | failed: 2 events; avg 59.83007ms - 2.95784/sec 2023-03-16T16:06:15.942Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #61 for future & fallible event' TIMED OUT after 184.515171ms 2023-03-16T16:06:15.942Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #61 for future & fallible event' ended after running for 673.705405ms -- stats: | ok: 2 events; avg 100.872949ms - 2.96866/sec | time out: 2 events; avg 171.266705ms - 2.96866/sec | failed: 2 events; avg 60.085002ms - 2.96866/sec 2023-03-16T16:06:15.943Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #62 for future & fallible event' TIMED OUT after 184.650447ms 2023-03-16T16:06:15.943Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #62 for future & fallible event' ended after running for 673.877654ms -- stats: | ok: 2 events; avg 100.842014ms - 2.96790/sec | time out: 2 events; avg 171.328083ms - 2.96790/sec | failed: 2 events; avg 60.167748ms - 2.96790/sec 2023-03-16T16:06:15.943Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #98 for future & fallible event' TIMED OUT after 184.546379ms 2023-03-16T16:06:15.943Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #98 for future & fallible event' ended after running for 673.102067ms -- stats: | ok: 2 events; avg 101.574734ms - 2.97132/sec | time out: 2 events; avg 167.968124ms - 2.97132/sec | failed: 2 events; avg 62.772349ms - 2.97132/sec 2023-03-16T16:06:15.943Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #99 for future & fallible event' TIMED OUT after 184.648874ms 2023-03-16T16:06:15.943Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #99 for future & fallible event' ended after running for 673.339036ms -- stats: | ok: 2 events; avg 101.546377ms - 2.97027/sec | time out: 2 events; avg 168.007821ms - 2.97027/sec | failed: 2 events; avg 62.895507ms - 2.97027/sec 2023-03-16T16:06:15.949Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #100 for future & fallible event' TIMED OUT after 190.998216ms 2023-03-16T16:06:15.950Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #100 for future & fallible event' ended after running for 679.759065ms -- stats: | ok: 2 events; avg 101.432204ms - 2.94222/sec | time out: 2 events; avg 171.170071ms - 2.94222/sec | failed: 2 events; avg 62.998295ms - 2.94222/sec 2023-03-16T16:06:15.950Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #101 for future & fallible event' TIMED OUT after 191.187246ms 2023-03-16T16:06:15.950Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #101 for future & fallible event' ended after running for 679.973191ms -- stats: | ok: 2 events; avg 101.389676ms - 2.94129/sec | time out: 2 events; avg 171.325028ms - 2.94129/sec | failed: 2 events; avg 63.088991ms - 2.94129/sec 2023-03-16T16:06:15.950Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #102 for future & fallible event' TIMED OUT after 191.319985ms 2023-03-16T16:06:15.950Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #102 for future & fallible event' ended after running for 680.171027ms -- stats: | ok: 2 events; avg 101.35439ms - 2.94044/sec | time out: 2 events; avg 171.387166ms - 2.94044/sec | failed: 2 events; avg 63.189931ms - 2.94044/sec 2023-03-16T16:06:15.950Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #17 for future & fallible event' TIMED OUT after 191.508704ms 2023-03-16T16:06:15.950Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #17 for future & fallible event' ended after running for 686.471208ms -- stats: | ok: 2 events; avg 101.251274ms - 2.91345/sec | time out: 2 events; avg 176.012397ms - 2.91345/sec | failed: 2 events; avg 59.057005ms - 2.91345/sec 2023-03-16T16:06:15.953Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #18 for future & fallible event' TIMED OUT after 194.387533ms 2023-03-16T16:06:15.953Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #18 for future & fallible event' ended after running for 689.481629ms -- stats: | ok: 2 events; avg 101.217419ms - 2.90073/sec | time out: 2 events; avg 177.442104ms - 2.90073/sec | failed: 2 events; avg 59.14554ms - 2.90073/sec 2023-03-16T16:06:15.954Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #19 for future & fallible event' TIMED OUT after 194.609008ms 2023-03-16T16:06:15.954Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #19 for future & fallible event' ended after running for 689.696969ms -- stats: | ok: 2 events; avg 101.182222ms - 2.89982/sec | time out: 2 events; avg 177.520603ms - 2.89982/sec | failed: 2 events; avg 59.234001ms - 2.89982/sec 2023-03-16T16:06:15.954Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #20 for future & fallible event' TIMED OUT after 194.747718ms 2023-03-16T16:06:15.954Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #20 for future & fallible event' ended after running for 689.897046ms -- stats: | ok: 2 events; avg 101.146832ms - 2.89898/sec | time out: 2 events; avg 177.57833ms - 2.89898/sec | failed: 2 events; avg 59.343267ms - 2.89898/sec 2023-03-16T16:06:15.956Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #21 for future & fallible event' TIMED OUT after 197.099628ms 2023-03-16T16:06:15.956Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #21 for future & fallible event' ended after running for 692.312348ms -- stats: | ok: 2 events; avg 101.11443ms - 2.88887/sec | time out: 2 events; avg 178.745285ms - 2.88887/sec | failed: 2 events; avg 59.433393ms - 2.88887/sec 2023-03-16T16:06:15.956Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #22 for future & fallible event' TIMED OUT after 197.13264ms 2023-03-16T16:06:15.957Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #22 for future & fallible event' ended after running for 692.466632ms -- stats: | ok: 2 events; avg 101.668552ms - 2.88823/sec | time out: 2 events; avg 178.750083ms - 2.88823/sec | failed: 2 events; avg 58.973752ms - 2.88823/sec 2023-03-16T16:06:15.957Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #23 for future & fallible event' TIMED OUT after 196.063731ms 2023-03-16T16:06:15.957Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #23 for future & fallible event' ended after running for 692.612263ms -- stats: | ok: 2 events; avg 101.634435ms - 2.88762/sec | time out: 2 events; avg 178.204864ms - 2.88762/sec | failed: 2 events; avg 59.068717ms - 2.88762/sec 2023-03-16T16:06:15.957Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #24 for future & fallible event' TIMED OUT after 196.120181ms 2023-03-16T16:06:15.958Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #24 for future & fallible event' ended after running for 692.771128ms -- stats: | ok: 2 events; avg 101.602077ms - 2.88696/sec | time out: 2 events; avg 178.22133ms - 2.88696/sec | failed: 2 events; avg 59.736904ms - 2.88696/sec 2023-03-16T16:06:15.958Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #25 for future & fallible event' TIMED OUT after 197.727006ms 2023-03-16T16:06:15.959Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #25 for future & fallible event' ended after running for 694.418354ms -- stats: | ok: 2 events; avg 101.539008ms - 2.88011/sec | time out: 2 events; avg 179.032862ms - 2.88011/sec | failed: 2 events; avg 59.835613ms - 2.88011/sec 2023-03-16T16:06:15.959Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #27 for future & fallible event' TIMED OUT after 197.830709ms 2023-03-16T16:06:15.959Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #27 for future & fallible event' ended after running for 694.548016ms -- stats: | ok: 2 events; avg 101.505116ms - 2.87957/sec | time out: 2 events; avg 179.027587ms - 2.87957/sec | failed: 2 events; avg 59.975281ms - 2.87957/sec 2023-03-16T16:06:15.959Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #28 for future & fallible event' TIMED OUT after 197.920657ms 2023-03-16T16:06:15.959Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #28 for future & fallible event' ended after running for 694.698605ms -- stats: | ok: 2 events; avg 101.469696ms - 2.87895/sec | time out: 2 events; avg 179.030463ms - 2.87895/sec | failed: 2 events; avg 60.065843ms - 2.87895/sec 2023-03-16T16:06:15.959Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #29 for future & fallible event' TIMED OUT after 198.005152ms 2023-03-16T16:06:15.959Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #29 for future & fallible event' ended after running for 694.894391ms -- stats: | ok: 2 events; avg 101.42412ms - 2.87814/sec | time out: 2 events; avg 179.056555ms - 2.87814/sec | failed: 2 events; avg 60.187824ms - 2.87814/sec 2023-03-16T16:06:15.959Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #30 for future & fallible event' TIMED OUT after 198.098469ms 2023-03-16T16:06:15.959Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #30 for future & fallible event' ended after running for 695.053757ms -- stats: | ok: 2 events; avg 101.38981ms - 2.87748/sec | time out: 2 events; avg 179.10254ms - 2.87748/sec | failed: 2 events; avg 60.279876ms - 2.87748/sec 2023-03-16T16:06:15.959Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #31 for future & fallible event' TIMED OUT after 198.181495ms 2023-03-16T16:06:15.960Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #31 for future & fallible event' ended after running for 694.391908ms -- stats: | ok: 2 events; avg 101.353481ms - 2.88022/sec | time out: 2 events; avg 179.130733ms - 2.88022/sec | failed: 2 events; avg 60.399171ms - 2.88022/sec 2023-03-16T16:06:15.962Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #63 for future & fallible event' TIMED OUT after 200.175983ms 2023-03-16T16:06:15.962Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #63 for future & fallible event' ended after running for 693.087033ms -- stats: | ok: 2 events; avg 101.465613ms - 2.88564/sec | time out: 2 events; avg 179.083332ms - 2.88564/sec | failed: 2 events; avg 61.385997ms - 2.88564/sec 2023-03-16T16:06:15.962Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #64 for future & fallible event' TIMED OUT after 200.302998ms 2023-03-16T16:06:15.962Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #64 for future & fallible event' ended after running for 693.249842ms -- stats: | ok: 2 events; avg 101.435915ms - 2.88496/sec | time out: 2 events; avg 179.13951ms - 2.88496/sec | failed: 2 events; avg 61.474584ms - 2.88496/sec 2023-03-16T16:06:15.962Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #65 for future & fallible event' TIMED OUT after 200.469171ms 2023-03-16T16:06:15.962Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #65 for future & fallible event' ended after running for 693.490835ms -- stats: | ok: 2 events; avg 101.356924ms - 2.88396/sec | time out: 2 events; avg 179.185569ms - 2.88396/sec | failed: 2 events; avg 61.558839ms - 2.88396/sec 2023-03-16T16:06:15.965Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #66 for future & fallible event' TIMED OUT after 202.737093ms 2023-03-16T16:06:15.965Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #66 for future & fallible event' ended after running for 695.845633ms -- stats: | ok: 2 events; avg 101.320043ms - 2.87420/sec | time out: 2 events; avg 180.354476ms - 2.87420/sec | failed: 2 events; avg 61.675735ms - 2.87420/sec 2023-03-16T16:06:15.965Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #67 for future & fallible event' TIMED OUT after 202.86068ms 2023-03-16T16:06:15.965Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #67 for future & fallible event' ended after running for 696.003229ms -- stats: | ok: 2 events; avg 101.286218ms - 2.87355/sec | time out: 2 events; avg 180.411324ms - 2.87355/sec | failed: 2 events; avg 61.762035ms - 2.87355/sec 2023-03-16T16:06:15.965Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #68 for future & fallible event' TIMED OUT after 202.947551ms 2023-03-16T16:06:15.965Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #68 for future & fallible event' ended after running for 696.161362ms -- stats: | ok: 2 events; avg 101.250783ms - 2.87290/sec | time out: 2 events; avg 180.447131ms - 2.87290/sec | failed: 2 events; avg 61.849345ms - 2.87290/sec 2023-03-16T16:06:15.965Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #69 for future & fallible event' TIMED OUT after 203.145332ms 2023-03-16T16:06:15.965Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #69 for future & fallible event' ended after running for 696.480755ms -- stats: | ok: 2 events; avg 101.218313ms - 2.87158/sec | time out: 2 events; avg 180.538237ms - 2.87158/sec | failed: 2 events; avg 61.934125ms - 2.87158/sec 2023-03-16T16:06:15.966Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #70 for future & fallible event' TIMED OUT after 203.231872ms 2023-03-16T16:06:15.966Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #70 for future & fallible event' ended after running for 696.632903ms -- stats: | ok: 2 events; avg 101.171643ms - 2.87095/sec | time out: 2 events; avg 180.573791ms - 2.87095/sec | failed: 2 events; avg 62.047333ms - 2.87095/sec 2023-03-16T16:06:15.966Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #71 for future & fallible event' TIMED OUT after 203.317053ms 2023-03-16T16:06:15.966Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #71 for future & fallible event' ended after running for 696.785141ms -- stats: | ok: 2 events; avg 101.137199ms - 2.87033/sec | time out: 2 events; avg 180.621788ms - 2.87033/sec | failed: 2 events; avg 62.131137ms - 2.87033/sec 2023-03-16T16:06:15.966Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #72 for future & fallible event' TIMED OUT after 203.396721ms 2023-03-16T16:06:15.966Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #72 for future & fallible event' ended after running for 696.934653ms -- stats: | ok: 2 events; avg 101.103291ms - 2.86971/sec | time out: 2 events; avg 180.654377ms - 2.86971/sec | failed: 2 events; avg 62.21889ms - 2.86971/sec 2023-03-16T16:06:15.966Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #73 for future & fallible event' TIMED OUT after 203.309129ms 2023-03-16T16:06:15.966Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #73 for future & fallible event' ended after running for 697.129817ms -- stats: | ok: 2 events; avg 101.068303ms - 2.86891/sec | time out: 2 events; avg 180.604309ms - 2.86891/sec | failed: 2 events; avg 62.303953ms - 2.86891/sec 2023-03-16T16:06:15.966Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #74 for future & fallible event' TIMED OUT after 203.41846ms 2023-03-16T16:06:15.966Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #74 for future & fallible event' ended after running for 697.289514ms -- stats: | ok: 2 events; avg 101.622984ms - 2.86825/sec | time out: 2 events; avg 180.652648ms - 2.86825/sec | failed: 2 events; avg 61.887007ms - 2.86825/sec 2023-03-16T16:06:15.966Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #75 for future & fallible event' TIMED OUT after 203.500338ms 2023-03-16T16:06:15.967Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #75 for future & fallible event' ended after running for 697.416008ms -- stats: | ok: 2 events; avg 101.591401ms - 2.86773/sec | time out: 2 events; avg 180.66512ms - 2.86773/sec | failed: 2 events; avg 61.980247ms - 2.86773/sec 2023-03-16T16:06:15.967Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #76 for future & fallible event' TIMED OUT after 203.555165ms 2023-03-16T16:06:15.967Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #76 for future & fallible event' ended after running for 697.567935ms -- stats: | ok: 2 events; avg 101.529889ms - 2.86710/sec | time out: 2 events; avg 180.683225ms - 2.86710/sec | failed: 2 events; avg 62.09071ms - 2.86710/sec 2023-03-16T16:06:15.967Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #77 for future & fallible event' TIMED OUT after 202.96558ms 2023-03-16T16:06:15.967Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #77 for future & fallible event' ended after running for 697.725391ms -- stats: | ok: 2 events; avg 101.451062ms - 2.86646/sec | time out: 2 events; avg 180.443227ms - 2.86646/sec | failed: 2 events; avg 62.230255ms - 2.86646/sec 2023-03-16T16:06:15.967Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #78 for future & fallible event' TIMED OUT after 203.048602ms 2023-03-16T16:06:15.967Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #78 for future & fallible event' ended after running for 697.881659ms -- stats: | ok: 2 events; avg 101.41445ms - 2.86582/sec | time out: 2 events; avg 180.484653ms - 2.86582/sec | failed: 2 events; avg 62.623851ms - 2.86582/sec 2023-03-16T16:06:15.967Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #79 for future & fallible event' TIMED OUT after 203.193537ms 2023-03-16T16:06:15.967Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #79 for future & fallible event' ended after running for 698.098709ms -- stats: | ok: 2 events; avg 100.864753ms - 2.86492/sec | time out: 2 events; avg 180.553734ms - 2.86492/sec | failed: 2 events; avg 62.613375ms - 2.86492/sec 2023-03-16T16:06:15.967Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #80 for future & fallible event' TIMED OUT after 203.127593ms 2023-03-16T16:06:15.968Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #80 for future & fallible event' ended after running for 698.256901ms -- stats: | ok: 2 events; avg 100.829199ms - 2.86428/sec | time out: 2 events; avg 181.127623ms - 2.86428/sec | failed: 2 events; avg 62.6949ms - 2.86428/sec 2023-03-16T16:06:15.968Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #81 for future & fallible event' TIMED OUT after 203.149101ms 2023-03-16T16:06:15.968Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #81 for future & fallible event' ended after running for 698.410377ms -- stats: | ok: 2 events; avg 101.454929ms - 2.86365/sec | time out: 2 events; avg 181.134865ms - 2.86365/sec | failed: 2 events; avg 62.235348ms - 2.86365/sec 2023-03-16T16:06:15.968Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #82 for future & fallible event' TIMED OUT after 203.259676ms 2023-03-16T16:06:15.968Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #82 for future & fallible event' ended after running for 698.563598ms -- stats: | ok: 2 events; avg 101.422623ms - 2.86302/sec | time out: 2 events; avg 181.184262ms - 2.86302/sec | failed: 2 events; avg 62.311441ms - 2.86302/sec 2023-03-16T16:06:15.973Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #83 for future & fallible event' TIMED OUT after 208.246179ms 2023-03-16T16:06:15.973Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #83 for future & fallible event' ended after running for 703.651267ms -- stats: | ok: 2 events; avg 101.387784ms - 2.84232/sec | time out: 2 events; avg 183.661669ms - 2.84232/sec | failed: 2 events; avg 62.385477ms - 2.84232/sec 2023-03-16T16:06:15.973Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #84 for future & fallible event' TIMED OUT after 208.414176ms 2023-03-16T16:06:15.973Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #84 for future & fallible event' ended after running for 703.865158ms -- stats: | ok: 2 events; avg 101.329789ms - 2.84145/sec | time out: 2 events; avg 183.759302ms - 2.84145/sec | failed: 2 events; avg 62.469132ms - 2.84145/sec 2023-03-16T16:06:15.973Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #85 for future & fallible event' TIMED OUT after 208.455384ms 2023-03-16T16:06:15.973Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #85 for future & fallible event' ended after running for 704.021462ms -- stats: | ok: 2 events; avg 101.295494ms - 2.84082/sec | time out: 2 events; avg 183.750123ms - 2.84082/sec | failed: 2 events; avg 62.603258ms - 2.84082/sec 2023-03-16T16:06:15.976Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #86 for future & fallible event' TIMED OUT after 210.522622ms 2023-03-16T16:06:15.976Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #86 for future & fallible event' ended after running for 706.189165ms -- stats: | ok: 2 events; avg 101.260521ms - 2.83210/sec | time out: 2 events; avg 184.775963ms - 2.83210/sec | failed: 2 events; avg 62.707417ms - 2.83210/sec 2023-03-16T16:06:15.976Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #87 for future & fallible event' ended after running for 706.393387ms -- stats: | ok: 3 events; avg 137.742281ms - 4.24693/sec | time out: 1 events; avg 159.013271ms - 1.41564/sec | failed: 2 events; avg 62.781669ms - 2.83128/sec 2023-03-16T16:06:15.976Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #88 for future & fallible event' ended after running for 706.510613ms -- stats: | ok: 3 events; avg 137.743622ms - 4.24622/sec | time out: 1 events; avg 159.000158ms - 1.41541/sec | failed: 2 events; avg 62.858462ms - 2.83081/sec 2023-03-16T16:06:15.976Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #89 for future & fallible event' ended after running for 706.658821ms -- stats: | ok: 3 events; avg 137.724787ms - 4.24533/sec | time out: 1 events; avg 158.984572ms - 1.41511/sec | failed: 2 events; avg 62.955514ms - 2.83022/sec 2023-03-16T16:06:15.976Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #90 for future & fallible event' ended after running for 706.776032ms -- stats: | ok: 3 events; avg 137.743145ms - 4.24463/sec | time out: 1 events; avg 158.972129ms - 1.41488/sec | failed: 2 events; avg 63.0349ms - 2.82975/sec 2023-03-16T16:06:15.978Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #91 for future & fallible event' ended after running for 708.208976ms -- stats: | ok: 3 events; avg 138.181925ms - 4.23604/sec | time out: 1 events; avg 158.956811ms - 1.41201/sec | failed: 2 events; avg 63.109122ms - 2.82403/sec 2023-03-16T16:06:15.978Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #92 for future & fallible event' ended after running for 708.312838ms -- stats: | ok: 3 events; avg 138.181299ms - 4.23542/sec | time out: 1 events; avg 158.941865ms - 1.41181/sec | failed: 2 events; avg 63.182995ms - 2.82361/sec 2023-03-16T16:06:15.978Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #103 for future & fallible event' ended after running for 708.090656ms -- stats: | ok: 3 events; avg 138.522476ms - 4.23675/sec | time out: 1 events; avg 158.051595ms - 1.41225/sec | failed: 2 events; avg 63.09472ms - 2.82450/sec 2023-03-16T16:06:15.978Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #104 for future & fallible event' ended after running for 708.206253ms -- stats: | ok: 3 events; avg 138.340861ms - 4.23605/sec | time out: 1 events; avg 158.069611ms - 1.41202/sec | failed: 2 events; avg 63.1712ms - 2.82404/sec 2023-03-16T16:06:15.978Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #105 for future & fallible event' ended after running for 708.297285ms -- stats: | ok: 3 events; avg 138.337225ms - 4.23551/sec | time out: 1 events; avg 158.554614ms - 1.41184/sec | failed: 2 events; avg 63.281395ms - 2.82367/sec 2023-03-16T16:06:15.978Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #106 for future & fallible event' ended after running for 708.377198ms -- stats: | ok: 3 events; avg 138.727844ms - 4.23503/sec | time out: 1 events; avg 158.537284ms - 1.41168/sec | failed: 2 events; avg 62.754124ms - 2.82335/sec 2023-03-16T16:06:15.979Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #107 for future & fallible event' ended after running for 708.467468ms -- stats: | ok: 3 events; avg 138.710648ms - 4.23449/sec | time out: 1 events; avg 158.522397ms - 1.41150/sec | failed: 2 events; avg 62.830925ms - 2.82299/sec 2023-03-16T16:06:15.980Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #108 for future & fallible event' ended after running for 710.203809ms -- stats: | ok: 3 events; avg 139.073014ms - 4.22414/sec | time out: 1 events; avg 158.596367ms - 1.40805/sec | failed: 2 events; avg 62.911496ms - 2.81609/sec 2023-03-16T16:06:15.980Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #109 for future & fallible event' ended after running for 710.299958ms -- stats: | ok: 3 events; avg 139.065117ms - 4.22357/sec | time out: 1 events; avg 159.049571ms - 1.40786/sec | failed: 2 events; avg 62.988326ms - 2.81571/sec 2023-03-16T16:06:15.981Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #110 for future & fallible event' ended after running for 710.358914ms -- stats: | ok: 3 events; avg 139.040232ms - 4.22322/sec | time out: 1 events; avg 158.90485ms - 1.40774/sec | failed: 2 events; avg 63.13058ms - 2.81548/sec 2023-03-16T16:06:15.981Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #111 for future & fallible event' ended after running for 710.435249ms -- stats: | ok: 3 events; avg 139.02773ms - 4.22276/sec | time out: 1 events; avg 158.880368ms - 1.40759/sec | failed: 2 events; avg 63.230529ms - 2.81518/sec 2023-03-16T16:06:15.982Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #112 for future & fallible event' ended after running for 711.801267ms -- stats: | ok: 3 events; avg 139.4445ms - 4.21466/sec | time out: 1 events; avg 158.816218ms - 1.40489/sec | failed: 2 events; avg 63.304633ms - 2.80977/sec 2023-03-16T16:06:15.982Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #113 for future & fallible event' ended after running for 711.991323ms -- stats: | ok: 3 events; avg 139.431715ms - 4.21353/sec | time out: 1 events; avg 158.784807ms - 1.40451/sec | failed: 2 events; avg 63.405842ms - 2.80902/sec 2023-03-16T16:06:15.982Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #114 for future & fallible event' ended after running for 712.086194ms -- stats: | ok: 3 events; avg 139.447689ms - 4.21297/sec | time out: 1 events; avg 158.813342ms - 1.40432/sec | failed: 2 events; avg 63.486457ms - 2.80865/sec 2023-03-16T16:06:15.982Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #115 for future & fallible event' ended after running for 712.169892ms -- stats: | ok: 3 events; avg 139.437228ms - 4.21248/sec | time out: 1 events; avg 158.801302ms - 1.40416/sec | failed: 2 events; avg 63.565664ms - 2.80832/sec 2023-03-16T16:06:15.983Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #116 for future & fallible event' ended after running for 712.255815ms -- stats: | ok: 3 events; avg 139.427245ms - 4.21197/sec | time out: 1 events; avg 158.77448ms - 1.40399/sec | failed: 2 events; avg 63.645028ms - 2.80798/sec 2023-03-16T16:06:15.983Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #117 for future & fallible event' ended after running for 712.333327ms -- stats: | ok: 3 events; avg 139.416575ms - 4.21151/sec | time out: 1 events; avg 158.753559ms - 1.40384/sec | failed: 2 events; avg 63.725248ms - 2.80767/sec 2023-03-16T16:06:15.983Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #118 for future & fallible event' ended after running for 712.413041ms -- stats: | ok: 3 events; avg 139.230683ms - 4.21104/sec | time out: 1 events; avg 158.73298ms - 1.40368/sec | failed: 2 events; avg 63.803703ms - 2.80736/sec 2023-03-16T16:06:15.985Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #119 for future & fallible event' ended after running for 714.265175ms -- stats: | ok: 3 events; avg 139.794603ms - 4.20012/sec | time out: 1 events; avg 158.691972ms - 1.40004/sec | failed: 2 events; avg 64.14789ms - 2.80008/sec 2023-03-16T16:06:15.985Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #120 for future & fallible event' ended after running for 714.390606ms -- stats: | ok: 3 events; avg 139.759809ms - 4.19938/sec | time out: 1 events; avg 158.781141ms - 1.39979/sec | failed: 2 events; avg 64.249679ms - 2.79959/sec 2023-03-16T16:06:15.985Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #121 for future & fallible event' ended after running for 714.471292ms -- stats: | ok: 3 events; avg 139.745414ms - 4.19891/sec | time out: 1 events; avg 158.723444ms - 1.39964/sec | failed: 2 events; avg 64.332888ms - 2.79927/sec thread 'multi::tests::stats' panicked at 'assertion failed: `(left == right)` left: `3`, right: `2`: counter of successful 'future & fallible event' events is wrong for pipeline #87', src/multi/mod.rs:335:13 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace FAILED <0.771s> test multi::tests::undegradable_latencies ... 2023-03-16T16:06:16.001Z 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): 329.383µs 2023-03-16T16:06:16.004Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #0)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.004Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #1)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.004Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #2)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.004Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #3)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.005Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #4)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.005Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #5)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.005Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #6)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.005Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #7)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.005Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #8)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.005Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #9)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.006Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #10)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.006Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #11)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.006Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #12)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.006Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #13)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.006Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #14)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.007Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #15)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.007Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #16)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.007Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #17)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.007Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #18)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.007Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #19)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.008Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #20)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.008Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #21)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.008Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #22)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.008Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #23)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.008Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #24)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.008Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #25)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.009Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #26)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.009Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #27)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.009Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #28)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.009Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #29)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.009Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #30)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.009Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #31)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.009Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #32)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.010Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #33)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.010Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #34)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.010Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #35)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.010Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #36)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.010Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #37)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.010Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #38)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.011Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #39)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.011Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #40)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.011Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #41)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.011Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #42)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.011Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #43)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.011Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #44)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.011Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #45)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.012Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #46)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.012Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #47)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.012Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #48)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.012Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #49)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.012Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #50)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.012Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #51)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.013Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #52)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.013Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #53)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.013Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #54)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.013Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #55)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.013Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #56)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.013Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #57)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.013Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #58)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.014Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #59)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.014Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #60)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.015Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #61)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #62)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #63)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #64)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #65)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #66)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #67)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #68)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #69)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #70)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #71)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #72)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #73)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #74)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #75)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #76)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #77)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #78)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #79)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #80)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #81)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #82)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #83)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #84)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #85)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #86)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.016Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #87)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #88)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #89)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #90)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #91)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #92)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #93)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #94)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #95)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #96)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #97)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #98)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #99)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #100)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #101)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #102)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #103)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #104)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #105)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #106)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #107)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #108)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #109)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #110)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #111)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #112)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #113)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #114)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #115)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #116)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #117)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #118)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #119)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #120)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #121)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #122)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #123)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #124)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #125)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #126)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #127)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #128)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #129)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #130)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #131)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #132)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #133)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #134)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #135)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #136)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #137)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #138)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #139)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #140)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #141)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #142)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #143)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #144)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.018Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #145)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #146)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #147)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #148)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #149)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #150)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #151)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #152)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #153)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #154)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #155)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #156)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #157)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #158)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #159)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #160)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #161)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #162)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #163)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #164)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #165)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #166)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #167)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #168)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #169)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #170)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #171)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #172)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #173)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #174)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #175)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #176)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #177)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #178)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #179)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #180)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #181)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #182)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #183)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #184)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #185)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #186)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #187)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #188)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #189)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #190)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #191)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #192)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #193)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #194)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #195)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #196)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #197)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #198)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #199)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #200)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #201)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #202)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #203)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #204)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #205)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #206)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.020Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #207)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #208)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #209)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #210)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #211)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #212)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #213)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #214)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #215)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #216)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #217)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #218)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #219)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #220)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #221)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #222)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #223)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #224)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #225)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #226)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #227)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #228)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #229)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #230)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #231)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #232)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #233)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #234)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #235)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.021Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #236)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #237)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #238)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #239)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #240)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #241)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #242)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #243)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #244)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #245)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #246)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #247)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #248)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #249)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #250)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #251)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #252)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #253)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #254)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:06:16.022Z 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: 6.869991ms 3. Time to produce & consume another SIMPLE event (with lots of -- 256 -- sleeping Multi Tokio tasks): 7.353µs 2023-03-16T16:06:16.022Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIMPLE: solo pipeline' ended after running for 21.732886ms -- stats: | ok: 2 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #0)' ended after running for 23.249371ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #1)' ended after running for 23.086577ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #2)' ended after running for 22.94071ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #3)' ended after running for 22.752247ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #4)' ended after running for 22.639632ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #5)' ended after running for 22.510888ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #6)' ended after running for 22.379125ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #7)' ended after running for 22.231339ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #8)' ended after running for 22.050083ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #9)' ended after running for 21.907289ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #10)' ended after running for 21.77321ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #11)' ended after running for 21.640837ms -- stats: | ok: 1 events 2023-03-16T16:06:16.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #12)' ended after running for 21.41893ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #13)' ended after running for 21.22534ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #14)' ended after running for 21.085794ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #15)' ended after running for 20.953169ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #16)' ended after running for 20.821482ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #17)' ended after running for 20.68975ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #18)' ended after running for 20.453569ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #19)' ended after running for 20.331435ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #20)' ended after running for 20.22864ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #21)' ended after running for 20.122457ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #22)' ended after running for 20.022348ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #23)' ended after running for 19.920756ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #24)' ended after running for 19.789229ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #25)' ended after running for 19.669742ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #26)' ended after running for 19.567674ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #27)' ended after running for 19.467059ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #28)' ended after running for 19.399632ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #29)' ended after running for 19.295979ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #30)' ended after running for 19.186086ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #31)' ended after running for 19.045752ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #32)' ended after running for 18.925008ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #33)' ended after running for 18.822343ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #34)' ended after running for 18.701407ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #35)' ended after running for 18.578913ms -- stats: | ok: 1 events 2023-03-16T16:06:16.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #36)' ended after running for 18.467491ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #37)' ended after running for 18.261415ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #38)' ended after running for 18.121537ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #39)' ended after running for 18.008096ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #40)' ended after running for 17.897215ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #41)' ended after running for 17.787087ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #42)' ended after running for 17.67972ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #43)' ended after running for 17.544274ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #44)' ended after running for 17.424596ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #45)' ended after running for 17.310403ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #46)' ended after running for 17.197794ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #47)' ended after running for 17.08177ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #48)' ended after running for 16.96289ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #49)' ended after running for 16.850617ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #50)' ended after running for 16.718092ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #51)' ended after running for 16.603993ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #52)' ended after running for 16.489294ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #53)' ended after running for 16.381531ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #54)' ended after running for 16.271553ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #55)' ended after running for 16.187995ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #56)' ended after running for 16.052444ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #57)' ended after running for 15.926365ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #58)' ended after running for 15.819245ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #59)' ended after running for 15.70866ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #60)' ended after running for 15.602817ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #61)' ended after running for 13.933798ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #62)' ended after running for 13.90445ms -- stats: | ok: 1 events 2023-03-16T16:06:16.029Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #63)' ended after running for 13.899347ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #64)' ended after running for 13.901022ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #65)' ended after running for 13.902239ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #66)' ended after running for 13.871749ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #67)' ended after running for 13.874259ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #68)' ended after running for 13.876094ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #69)' ended after running for 13.876861ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #70)' ended after running for 13.881418ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #71)' ended after running for 13.881057ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #72)' ended after running for 13.883779ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #73)' ended after running for 13.883167ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #74)' ended after running for 13.887953ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #75)' ended after running for 13.891473ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #76)' ended after running for 14.054061ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #77)' ended after running for 14.090392ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #78)' ended after running for 14.058046ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #79)' ended after running for 14.06135ms -- stats: | ok: 1 events 2023-03-16T16:06:16.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #80)' ended after running for 14.062517ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #81)' ended after running for 14.276283ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #82)' ended after running for 14.508715ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #83)' ended after running for 14.540328ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #84)' ended after running for 14.543797ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #85)' ended after running for 14.557005ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #86)' ended after running for 14.726466ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #87)' ended after running for 14.741439ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #88)' ended after running for 14.746742ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #89)' ended after running for 14.753418ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #90)' ended after running for 14.758456ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #91)' ended after running for 14.765758ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #92)' ended after running for 14.769849ms -- stats: | ok: 1 events 2023-03-16T16:06:16.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #93)' ended after running for 14.777102ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #94)' ended after running for 14.783107ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #95)' ended after running for 14.790871ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #96)' ended after running for 14.796033ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #97)' ended after running for 14.802776ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #98)' ended after running for 14.80846ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #99)' ended after running for 14.814254ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #100)' ended after running for 14.819182ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #101)' ended after running for 14.827512ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #102)' ended after running for 14.832179ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #103)' ended after running for 14.840243ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #104)' ended after running for 14.84494ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #105)' ended after running for 14.853481ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #106)' ended after running for 14.861367ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #107)' ended after running for 14.840334ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #108)' ended after running for 14.849236ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #109)' ended after running for 14.854323ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #110)' ended after running for 14.884764ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #111)' ended after running for 14.890092ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #112)' ended after running for 14.896754ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #113)' ended after running for 14.900554ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #114)' ended after running for 14.907676ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #115)' ended after running for 14.912538ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #116)' ended after running for 14.91944ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #117)' ended after running for 14.924528ms -- stats: | ok: 1 events 2023-03-16T16:06:16.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #118)' ended after running for 14.931675ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #119)' ended after running for 14.937675ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #120)' ended after running for 14.944833ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #121)' ended after running for 14.949485ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #122)' ended after running for 14.959465ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #123)' ended after running for 14.967459ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #124)' ended after running for 14.972698ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #125)' ended after running for 14.982758ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #126)' ended after running for 14.990231ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #127)' ended after running for 14.995073ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #128)' ended after running for 15.002101ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #129)' ended after running for 15.006772ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #130)' ended after running for 15.014301ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #131)' ended after running for 15.021865ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #132)' ended after running for 15.043328ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #133)' ended after running for 15.077046ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #134)' ended after running for 15.090781ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #135)' ended after running for 15.067608ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #136)' ended after running for 15.077382ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #137)' ended after running for 15.088395ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #138)' ended after running for 15.099843ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #139)' ended after running for 15.110625ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #140)' ended after running for 15.117858ms -- stats: | ok: 1 events 2023-03-16T16:06:16.033Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #141)' ended after running for 15.128229ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #142)' ended after running for 15.139422ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #143)' ended after running for 15.15081ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #144)' ended after running for 15.159677ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #145)' ended after running for 15.169536ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #146)' ended after running for 15.168884ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #147)' ended after running for 15.175847ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #148)' ended after running for 15.180945ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #149)' ended after running for 15.188208ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #150)' ended after running for 15.194909ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #151)' ended after running for 15.202262ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #152)' ended after running for 15.208202ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #153)' ended after running for 15.214889ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #154)' ended after running for 15.221505ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #155)' ended after running for 15.227847ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #156)' ended after running for 15.235084ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #157)' ended after running for 15.239957ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #158)' ended after running for 15.247089ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #159)' ended after running for 15.300997ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #160)' ended after running for 15.310562ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #161)' ended after running for 15.31798ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #162)' ended after running for 15.325869ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #163)' ended after running for 15.332832ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #164)' ended after running for 15.340311ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #165)' ended after running for 15.347423ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #166)' ended after running for 15.352175ms -- stats: | ok: 1 events 2023-03-16T16:06:16.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #167)' ended after running for 15.359278ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #168)' ended after running for 15.343514ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #169)' ended after running for 15.346315ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #170)' ended after running for 15.347148ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #171)' ended after running for 15.350857ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #172)' ended after running for 15.357413ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #173)' ended after running for 15.363774ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #174)' ended after running for 15.370941ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #175)' ended after running for 15.377783ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #176)' ended after running for 15.384224ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #177)' ended after running for 15.390921ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #178)' ended after running for 15.395638ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #179)' ended after running for 15.401683ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #180)' ended after running for 15.418861ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #181)' ended after running for 15.426199ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #182)' ended after running for 15.434223ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #183)' ended after running for 15.453798ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #184)' ended after running for 15.48523ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #185)' ended after running for 15.49725ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #186)' ended after running for 15.505129ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #187)' ended after running for 15.511525ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #188)' ended after running for 15.519956ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #189)' ended after running for 15.524939ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #190)' ended after running for 15.533751ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #191)' ended after running for 15.539856ms -- stats: | ok: 1 events 2023-03-16T16:06:16.035Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #192)' ended after running for 15.547977ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #193)' ended after running for 15.555706ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #194)' ended after running for 15.551871ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #195)' ended after running for 15.560016ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #196)' ended after running for 15.565385ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #197)' ended after running for 15.573399ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #198)' ended after running for 15.550297ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #199)' ended after running for 15.557029ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #200)' ended after running for 15.562452ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #201)' ended after running for 15.570347ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #202)' ended after running for 15.576281ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #203)' ended after running for 15.584016ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #204)' ended after running for 15.597885ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #205)' ended after running for 15.605258ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #206)' ended after running for 15.610742ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #207)' ended after running for 15.618767ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #208)' ended after running for 15.645719ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #209)' ended after running for 15.655824ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #210)' ended after running for 15.655915ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #211)' ended after running for 15.663072ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #212)' ended after running for 15.668701ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #213)' ended after running for 15.67637ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #214)' ended after running for 15.681563ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #215)' ended after running for 15.689187ms -- stats: | ok: 1 events 2023-03-16T16:06:16.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #216)' ended after running for 15.694444ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #217)' ended after running for 15.702104ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #218)' ended after running for 15.706856ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #219)' ended after running for 15.714946ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #220)' ended after running for 15.719407ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #221)' ended after running for 15.727261ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #222)' ended after running for 15.731727ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #223)' ended after running for 15.740248ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #224)' ended after running for 15.745166ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #225)' ended after running for 15.753522ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #226)' ended after running for 15.731697ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #227)' ended after running for 15.738644ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #228)' ended after running for 15.752108ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #229)' ended after running for 15.756444ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #230)' ended after running for 15.757346ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #231)' ended after running for 15.761251ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #232)' ended after running for 15.782835ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #233)' ended after running for 15.79117ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #234)' ended after running for 15.792633ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #235)' ended after running for 15.795295ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #236)' ended after running for 15.795416ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #237)' ended after running for 15.798945ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #238)' ended after running for 15.800498ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #239)' ended after running for 15.803746ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #240)' ended after running for 15.804664ms -- stats: | ok: 1 events 2023-03-16T16:06:16.037Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #241)' ended after running for 15.807771ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #242)' ended after running for 15.800062ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #243)' ended after running for 15.798197ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #244)' ended after running for 15.803561ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #245)' ended after running for 15.808363ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #246)' ended after running for 15.815541ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #247)' ended after running for 15.822253ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #248)' ended after running for 15.829766ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #249)' ended after running for 15.836803ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #250)' ended after running for 15.843625ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #251)' ended after running for 15.85118ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #252)' ended after running for 15.86362ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #253)' ended after running for 15.870938ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #254)' ended after running for 15.878046ms -- stats: | ok: 1 events 2023-03-16T16:06:16.038Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #255)' ended after running for 15.85964ms -- stats: | ok: 1 events ok <0.042s> 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; .metricsDiagnostics()=false; .tracing()=false variant: MetricsWithoutDiagnostics -- usize: 1; reconverted to variant: MetricsWithoutDiagnostics -- .metrics()=true; .metricsDiagnostics()=false; .tracing()=false variant: MetricsWithDiagnostics -- usize: 3; reconverted to variant: MetricsWithDiagnostics -- .metrics()=true; .metricsDiagnostics()=true; .tracing()=false variant: OperationsTracing -- usize: 4; reconverted to variant: OperationsTracing -- .metrics()=false; .metricsDiagnostics()=false; .tracing()=true variant: MetricsAndTracing -- usize: 7; reconverted to variant: MetricsAndTracing -- .metrics()=true; .metricsDiagnostics()=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 <13.660s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <9.134s> 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, 184 reported stack was full CONSUMPTION: 4096000 successful, 2 reported stack was empty ok <4.114s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::single_producer_multiple_consumers ... 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 1 reports of 'full container' CONSUMPTIONS: 4096000 successful, 129 reports of 'empty container' ok <3.191s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::test_blocking ... Asserting pass 'virgin' Blocking on empty (from a virgin container): 100.31269ms Blocking on empty (again): 100.405921ms Non-Blocking 'try_consume()': 2.978µs Waiting to dequeue: 54.434933ms Blocking 'produce()' (won't block as there are free slots): 8.251µs Blocking on full: 100.456026ms Blocking on full (again): 100.446055ms Non-Blocking 'try_produce()': 3.027µs Waiting to 'produce()': 53.876837ms Blocking 'consume()' (won't block as there are elements): 3.539µs Asserting pass 'non-virgin' Blocking on empty (from a non-virgin container): 100.256941ms Blocking on empty (again): 100.370278ms Non-Blocking 'try_consume()': 3.043µs Waiting to dequeue: 53.344787ms Blocking 'produce()' (won't block as there are free slots): 8.231µs Blocking on full: 100.4596ms Blocking on full (again): 100.356669ms Non-Blocking 'try_produce()': 5.383µs Waiting to 'produce()': 54.179178ms Blocking 'consume()' (won't block as there are elements): 8.366µs Asserting pass 'promiscuous' Blocking on empty (from a promiscuous container): 100.322715ms Blocking on empty (again): 100.321818ms Non-Blocking 'try_consume()': 5.363µs Waiting to dequeue: 54.973264ms Blocking 'produce()' (won't block as there are free slots): 10.982µs Blocking on full: 100.454166ms Blocking on full (again): 100.457359ms Non-Blocking 'try_produce()': 5.308µs Waiting to 'produce()': 54.438948ms Blocking 'consume()' (won't block as there are elements): 5.659µs ok <1.538s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::basic_queue_use_cases ... ok <0.167s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <16.709s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.218s> 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: 487916, enqueuer_tail: 498329, dequeuer_tail: 498327 CONTENTS: 10412 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 498328 successful, 175 reported queue was full CONSUMPTION: 487916 successful, 37581 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 991523, enqueuer_tail: 1004142, dequeuer_tail: 991523 CONTENTS: 12619 elements, 65536 buffer -- concurrent_enqueuers: 2 PRODUCTION: 1004140 successful, 344 reported queue was full CONSUMPTION: 991523 successful, 51993 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 1418716, enqueuer_tail: 1418716, dequeuer_tail: 1418716 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 1418716 successful, 517 reported queue was full CONSUMPTION: 1418716 successful, 234051 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 1859618, enqueuer_tail: 1886180, dequeuer_tail: 1886179 CONTENTS: 26562 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 1886180 successful, 691 reported queue was full CONSUMPTION: 1859617 successful, 349512 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2271000, enqueuer_tail: 2336393, dequeuer_tail: 2313128 CONTENTS: 65393 elements, 65536 buffer -- concurrent_enqueuers: 4 PRODUCTION: 2336392 successful, 858 reported queue was full CONSUMPTION: 2271000 successful, 511750 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2758205, enqueuer_tail: 2823591, dequeuer_tail: 2823590 CONTENTS: 65386 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 2823591 successful, 997 reported queue was full CONSUMPTION: 2758205 successful, 561207 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 3287661, enqueuer_tail: 3287661, dequeuer_tail: 3287661 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 3287661 successful, 1171 reported queue was full CONSUMPTION: 3287661 successful, 591507 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 3738490, enqueuer_tail: 3776988, dequeuer_tail: 3776988 CONTENTS: 38498 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 3776988 successful, 1342 reported queue was full CONSUMPTION: 3738490 successful, 675180 reported queue was empty 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 1416 reported stack was full CONSUMPTION: 4096000 successful, 759662 reported stack was empty ok <0.396s> 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, 270812272 reports of 'empty container' ok <4.103s> test ogre_std::ogre_queues::blocking_queue::tests::basic_queue_use_cases_blocking ... ok <0.000s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <13.812s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.428s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_single_consumer ... Producing already stopped but we are no longer consuming anything. So far, 4095955; wanted: 4096000 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 602 reported stack was full CONSUMPTION: 4096000 successful, 10 reported stack was empty ok <14.215s> 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, 14 reports of 'full container' CONSUMPTIONS: 4096000 successful, 1442 reports of 'empty container' ok <31.710s> test ogre_std::ogre_queues::blocking_queue::tests::test_blocking ... Asserting pass 'virgin' Blocking on empty (from a virgin queue): 100.215755ms Blocking on empty (again): 100.426327ms Non-Blocking 'try_dequeue()': 2.852µs Blocking enqueueing (won't block as there are free slots): 170.098µs Blocking on full: 100.501828ms Blocking on full (again): 100.432673ms Non-Blocking 'try_enqueue()': 2.827µs Blocking dequeueing (won't block as there are elements): 8.376µs Asserting pass 'non-virgin' Blocking on empty (from a non-virgin queue): 100.459861ms Blocking on empty (again): 100.442458ms Non-Blocking 'try_dequeue()': 5.298µs Blocking enqueueing (won't block as there are free slots): 8.326µs Blocking on full: 100.446228ms Blocking on full (again): 100.433229ms Non-Blocking 'try_enqueue()': 2.842µs Blocking dequeueing (won't block as there are elements): 8.316µs Asserting pass 'promiscuous' Blocking on empty (from a promiscuous queue): 100.622504ms Blocking on empty (again): 100.334003ms Non-Blocking 'try_dequeue()': 5.724µs Blocking enqueueing (won't block as there are free slots): 8.285µs Blocking on full: 100.461033ms Blocking on full (again): 100.428282ms Non-Blocking 'try_enqueue()': 5.258µs Blocking dequeueing (won't block as there are elements): 11.073µs 'interrupt()' causing blocking operations to return immediately: 13.804µs ok <1.212s> 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 <15.651s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.730s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::multiple_producers_single_consumer ... Producing already stopped but we are no longer consuming anything. So far, 4095970; wanted: 4096000 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 265171809 reported stack was full CONSUMPTION: 4096000 successful, 328107 reported stack was empty ok <68.663s> 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, 256220883 reports of 'empty container' ok <52.687s> 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 <13.744s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.376s> 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, 167116666 reported stack was full CONSUMPTION: 4096000 successful, 0 reported stack was empty ok <9.964s> 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, 217496249 reports of 'empty container' ok <10.733s> 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.516s> test ogre_std::ogre_stacks::blocking_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.394s> test ogre_std::ogre_stacks::blocking_stack::tests::multiple_producers_single_consumer ... 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 0 reported stack was full CONSUMPTION: 4096000 successful, 0 reported stack was empty ok <5.966s> 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 <11.556s> 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 <13.287s> test ogre_std::ogre_stacks::non_blocking_atomic_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <1.130s> 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, 168185337 reported stack was full CONSUMPTION: 4096000 successful, 122241 reported stack was empty ok <34.998s> 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, 149857633 reports of 'empty container' ok <29.957s> 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 <13.026s> test ogre_std::ogre_stacks::non_blocking_parking_lot_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.362s> 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, 149073082 reported stack was full CONSUMPTION: 4096000 successful, 92463 reported stack was empty ok <7.385s> 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, 175656503 reports of 'empty container' ok <7.019s> test ogre_std::reference_counted_buffer_allocator::test::excessive_ref_decs - should panic ... 2023-03-16T16:13:23.879Z 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:224:13 ok <0.000s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_logs_and_metrics ... 2023-03-16T16:13:23.881Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:13:23.881Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 98.796µs -- stats: | ok: 2 events ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 260.486µs ago Execution Start: 24.926µs after creation Execution Finish: 123.722µ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.001s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_logs_and_no_metrics ... 2023-03-16T16:13:23.883Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Non-Futures / Non-Fallible Items & NO Metrics 2023-03-16T16:13:23.883Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 98.449µs -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 261.559µs ago Execution Start: 23.844µs after creation Execution Finish: 122.293µ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.001s> 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: 153.1µs ago Execution Start: 31.102µs after creation Execution Finish: 36.094µ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.001s> 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: 381.843µs ago Execution Start: 97.697µs after creation Execution Finish: 103.146µ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.001s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_logs_and_metrics ... 2023-03-16T16:13:23.890Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Futures (NO timeouts) / Fallible Items & Metrics 2023-03-16T16:13:23.890Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"17"' in 245ns 2023-03-16T16:13:24.041Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"19"' in 2.746µs 2023-03-16T16:13:24.194Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 304.371954ms -- stats: | ok: 4 events; avg 75.874284ms - 13.14182/sec | failed: 2 events; avg 1.495µs - 6.57091/sec ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 305.473599ms ago Execution Start: 41.598µs after creation Execution Finish: 304.413552ms after creation OK elements count: 4; OK elements average Future resolution time: 0.075874284s -- 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.0000014955s -- verify these values against the "executor closed" message ok <0.307s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_logs_and_no_metrics ... 2023-03-16T16:13:24.202Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Futures (NO timeouts) / Fallible Items & NO Metrics 2023-03-16T16:13:24.202Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"17"' 2023-03-16T16:13:24.355Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"19"' 2023-03-16T16:13:24.508Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 306.057124ms -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 307.116098ms ago Execution Start: 107.466µs after creation Execution Finish: 306.16459ms 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.311s> 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: 304.884456ms ago Execution Start: 261.549µs after creation Execution Finish: 304.528497ms after creation OK elements count: 4; OK elements average Future resolution time: 0.076037735s -- 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.0000013955s -- logs are DISABLED ok <0.307s> 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.481387ms ago Execution Start: 253.043µs after creation Execution Finish: 302.883993ms 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.306s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_logs_and_metrics ... 2023-03-16T16:13:25.140Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Futures (with timeouts of 100ms) / Fallible Items & Metrics 2023-03-16T16:13:25.141Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"17"' in 11.187µs 2023-03-16T16:13:25.243Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & metrics' TIMED OUT after 101.687892ms 2023-03-16T16:13:25.244Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"19"' in 10.756µs 2023-03-16T16:13:25.346Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & metrics' TIMED OUT after 101.131049ms 2023-03-16T16:13:25.346Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 205.744954ms -- stats: | ok: 2 events; avg 28.871µs - 9.72077/sec | time out: 2 events; avg 101.409465ms - 9.72077/sec | failed: 2 events; avg 10.972µs - 9.72077/sec ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 206.741482ms ago Execution Start: 109.922µs after creation Execution Finish: 205.854876ms after creation OK elements count: 2; OK elements average Future resolution time: 0.000028871s -- verify these values against the "executor closed" message TIMED OUT elements count: 2; TIMED OUT elements average Future resolution time: 0.101409465s -- verify these values against the "executor closed" message FAILED elements count: 2; FAILED elements average Future resolution time: 0.0000109715s -- verify these values against the "executor closed" message ok <0.209s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_logs_and_no_metrics ... 2023-03-16T16:13:25.358Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Futures (with timeouts of 100ms) / Fallible Items & NO Metrics 2023-03-16T16:13:25.358Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"17"' 2023-03-16T16:13:25.460Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & NO metrics' TIMED OUT 2023-03-16T16:13:25.461Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"19"' 2023-03-16T16:13:25.562Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & NO metrics' TIMED OUT 2023-03-16T16:13:25.563Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 205.005136ms -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 205.972317ms ago Execution Start: 435.772µs after creation Execution Finish: 205.440908ms 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.213s> 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: 203.774038ms ago Execution Start: 103.827µs after creation Execution Finish: 203.241205ms after creation OK elements count: 2; OK elements average Future resolution time: 0.000023342502s -- logs are DISABLED TIMED OUT elements count: 2; TIMED OUT elements average Future resolution time: 0.10148956s -- logs are DISABLED FAILED elements count: 2; FAILED elements average Future resolution time: 0.0000069265s -- logs are DISABLED ok <0.207s> 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.812114ms ago Execution Start: 112.113µs after creation Execution Finish: 202.447589ms 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.205s> test uni::channels::tests::atomic_mpmc_queue_doc_test ... receiving: Some("a") ok <0.002s> 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.003s> 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.110s> 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.149s> test uni::channels::tests::performance_measurements ... TokioMPSC (same task / same thread): 3632314.02/s -- 10485760 items processed in 2.886798871s TokioMPSC (different task / same thread): 3772560.54/s -- 10485760 items processed in 2.779480907s TokioMPSC (different task / different thread): 3219264.74/s -- 10485760 items processed in 3.257190956s AtomicMPMCQueue (same task / same thread): 13217469.37/s -- 10485760 items processed in 793.325841ms AtomicMPMCQueue (different task / same thread): 12568438.77/s -- 10485760 items processed in 834.292961ms AtomicMPMCQueue (different task / different thread): 18047919.51/s -- 10485760 items processed in 580.995499ms OgreMPMCQueue (same task / same thread): 15250504.45/s -- 10485760 items processed in 687.568076ms OgreMPMCQueue (different task / same thread): 6167942.17/s -- 10485760 items processed in 1.70004188s OgreMPMCQueue (different task / different thread): 13180771.84/s -- 10485760 items processed in 795.534596ms ok <14.322s> test uni::channels::tests::tokio_mpsc_queue_doc_test ... receiving: Some("a") ok <0.000s> test uni::tests::async_elements ... 2023-03-16T16:13:42.605Z 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-16T16:13:43.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async_elements() Event' ended after running for 1.002068022s -- stats: | ok: 4 events; avg 1.001845598s - 3.99174/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 0 events; avg 0ns - 0.00000/sec ok <1.008s> test uni::tests::demux ... 2023-03-16T16:13:43.619Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:13:43.620Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:13:43.620Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:13:43.623Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO event' ended after running for 3.911985ms -- stats: | ok: 4 events 2023-03-16T16:13:43.726Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR event' ended after running for 106.552493ms -- stats: | ok: 6 events ok <0.115s> test uni::tests::doc_tests ... 2023-03-16T16:13:43.739Z 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-16T16:13:43.744Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() Event' ended after running for 4.729655ms -- stats: | ok: 2 events ok <0.011s> test uni::tests::error_handling ... 2023-03-16T16:13:43.756Z 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-16T16:13:43.757Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'fallible event' yielded ERROR '"BLOW CODE received: 79"' in 11.217µs ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-16T16:13:43.760Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'fallible event' ended after running for 3.743321ms -- stats: | ok: 3 events; avg 54.968µs - 801.42740/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 11.217µs - 267.14247/sec ok <0.011s> test uni::tests::performance_measurements ... metricfull_non_futures_non_fallible_uni: 5831623.87/s -- 8388608 items processed in 1.43846863s metricless_non_futures_non_fallible_uni: 9457339.86/s -- 8388608 items processed in 886.994453ms par_metricless_non_futures_non_fallible_uni: 1898483.87/s -- 8388608 items processed in 4.418582701s metricfull_futures_fallible_uni: 3026554.09/s -- 8388608 items processed in 2.771669614s metricless_futures_fallible_uni: 7303681.17/s -- 8388608 items processed in 1.148545207s timeoutable_metricfull_futures_fallible_uni: 1233925.14/s -- 6291456 items processed in 5.098733934s timeoutable_metricless_futures_fallible_uni: 1925541.44/s -- 6291456 items processed in 3.267369819s ok <19.038s> test uni::tests::simple_pipeline ... 2023-03-16T16:14:02.810Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'simple_pipeline() Event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:14:02.812Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'simple_pipeline() Event' ended after running for 2.173433ms -- stats: | ok: 2 events ok <0.007s> test uni::tests::stats ... 2023-03-16T16:14:02.817Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-16T16:14:02.819Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event' ended after running for 2.183558ms -- stats: | ok: 1 events 2023-03-16T16:14:02.823Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-16T16:14:02.975Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.536313ms 2023-03-16T16:14:03.126Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event' TIMED OUT after 150.469664ms 2023-03-16T16:14:03.279Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.815606ms 2023-03-16T16:14:03.430Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event' TIMED OUT after 150.698623ms 2023-03-16T16:14:03.431Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event' ended after running for 607.038934ms -- stats: | ok: 2 events; avg 100.34591ms - 3.29468/sec | time out: 2 events; avg 150.584131ms - 3.29468/sec | failed: 2 events; avg 51.67596ms - 3.29468/sec ok <0.618s> failures: failures: multi::tests::stats test result: FAILED. 89 passed; 1 failed; 8 ignored; 0 measured; 0 filtered out; finished in 489.28s error: test failed, to rerun pass `--lib`