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: `uni::MultiPayload` --> src/multi/channels/ogre_mpmc_queue.rs:2:5 | 2 | uni::MultiPayload, | ^^^^^^^^^^^^^^^^^ 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: `crate::ogre_std::ogre_queues::blocking_queue` --> src/ogre_std/ogre_queues/meta_queue.rs:3:5 | 3 | use crate::ogre_std::ogre_queues::blocking_queue; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: unused imports: `AtomicU64`, `pin::Pin` --> src/ogre_std/ogre_queues/atomic_queues/atomic_meta.rs:10:30 | 10 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 11 | mem::MaybeUninit, 12 | pin::Pin, | ^^^^^^^^ warning: unused imports: `AtomicU32`, `mem::MaybeUninit` --> src/ogre_std/ogre_queues/atomic_queues/non_blocking_queue.rs:15:20 | 15 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 16 | mem::MaybeUninit, | ^^^^^^^^^^^^^^^^ warning: unused imports: `AtomicU32`, `mem::MaybeUninit` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:15:20 | 15 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 16 | mem::MaybeUninit, | ^^^^^^^^^^^^^^^^ warning: unused import: `std::future::Future` --> src/ogre_std/ogre_queues/full_sync_queues/full_sync_meta.rs:5:5 | 5 | use std::future::Future; | ^^^^^^^^^^^^^^^^^^^ warning: unused import: `std::time::Duration` --> src/ogre_std/ogre_queues/full_sync_queues/full_sync_meta.rs:10:5 | 10 | use std::time::Duration; | ^^^^^^^^^^^^^^^^^^^ warning: unused import: `AtomicU32` --> src/ogre_std/ogre_queues/full_sync_queues/non_blocking_queue.rs:13:20 | 13 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 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: `#[inline]` is ignored on function prototypes --> src/ogre_std/ogre_queues/meta_queue.rs:28:5 | 28 | #[inline(always)] | ^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_attributes)]` on by default warning: `#[inline]` is ignored on function prototypes --> src/ogre_std/ogre_queues/meta_queue.rs:46:5 | 46 | #[inline(always)] | ^^^^^^^^^^^^^^^^^ warning: `#[inline]` is ignored on function prototypes --> src/ogre_std/ogre_queues/meta_queue.rs:58:5 | 58 | #[inline(always)] | ^^^^^^^^^^^^^^^^^ warning: `#[inline]` is ignored on function prototypes --> src/ogre_std/ogre_queues/meta_queue.rs:87:5 | 87 | #[inline(always)] | ^^^^^^^^^^^^^^^^^ 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:218:9 | 218 | 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:265:9 | 265 | use super::*; | ^^^^^^^^ warning: unused import: `Duration` --> src/ogre_std/ogre_queues/blocking_queue.rs:350:32 | 350 | use std::time::{SystemTime,Duration}; | ^^^^^^^^ warning: unused import: `std::io::Write` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:336:9 | 336 | use std::io::Write; | ^^^^^^^^^^^^^^ warning: unused import: `std::time::SystemTime` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:337:9 | 337 | use std::time::SystemTime; | ^^^^^^^^^^^^^^^^^^^^^ warning: unused import: `OgreQueue` --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:5:9 | 5 | OgreQueue, | ^^^^^^^^^ warning: unused import: `OgreQueue` --> src/ogre_std/ogre_queues/atomic_queues/atomic_meta.rs:5:5 | 5 | OgreQueue, | ^^^^^^^^^ warning: unused variable: `concurrent_enqueuers` --> src/ogre_std/ogre_queues/atomic_queues/atomic_meta.rs:221:34 | 221 | let Self {enqueuer_tail, concurrent_enqueuers, buffer, head, dequeuer_tail} = self; | ^^^^^^^^^^^^^^^^^^^^ help: try ignoring the field: `concurrent_enqueuers: _` | = note: `#[warn(unused_variables)]` on by default warning: unused variable: `buffer` --> src/ogre_std/ogre_queues/atomic_queues/atomic_meta.rs:221:56 | 221 | let Self {enqueuer_tail, concurrent_enqueuers, buffer, head, dequeuer_tail} = self; | ^^^^^^ help: try ignoring the field: `buffer: _` warning: unused variable: `empty_guard_ref` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:266:39 | 266 | fn set_empty_guard_ref(&mut self, empty_guard_ref: &'_ RawMutex) { | ^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_empty_guard_ref` warning: unused variable: `buffer` --> src/ogre_std/ogre_queues/full_sync_queues/full_sync_meta.rs:153:56 | 153 | 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:49:12 | 49 | pub fn consumer_stream(self: &Arc>>) -> Option> { | ^^^^^^^^^^^^^^^ warning: associated function `wake_all_streams` is never used --> src/uni/channels/atomic_mpmc_queue.rs:120:8 | 120 | fn wake_all_streams(&self) { | ^^^^^^^^^^^^^^^^ warning: associated function `new` is never used --> src/uni/channels/atomic_mpmc_queue.rs:150:12 | 150 | pub fn new() -> Arc>> { | ^^^ warning: associated function `flush` is never used --> src/uni/channels/atomic_mpmc_queue.rs:175:18 | 175 | pub async fn flush(&self, timeout: Duration) -> u32 { | ^^^^^ warning: associated function `end_all_streams` is never used --> src/uni/channels/atomic_mpmc_queue.rs:196:18 | 196 | 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:208:12 | 208 | 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/blocking_queue.rs:337:12 | 337 | pub fn debug(&self) { | ^^^^^ 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: 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 74 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` | = note: `#[warn(unused_variables)]` on by default 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: unused variable: `concurrent_enqueuers` --> src/ogre_std/ogre_queues/atomic_queues/atomic_meta.rs:221:34 | 221 | let Self {enqueuer_tail, concurrent_enqueuers, buffer, head, dequeuer_tail} = self; | ^^^^^^^^^^^^^^^^^^^^ help: try ignoring the field: `concurrent_enqueuers: _` 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 58 warnings (46 duplicates) Finished release [optimized] target(s) in 17.20s Running unittests src/lib.rs (target/release/deps/reactive_mutiny-512fe0bf04487fca) --> LOGGER WAS ALREADY STARTED --> LOGGER WAS ALREADY STARTED 2023-03-06T16:34:36.924Z 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 <0.202s> test multi::channels::ogre_mpmc_queue::tests::doc_test ... received: a ok <0.000s> test multi::channels::ogre_mpmc_queue::tests::end_streams ... Creating & ending a single stream: Creating & ending two streams: ok <0.107s> test multi::channels::ogre_mpmc_queue::tests::multiple_streams ... ok <1.119s> test multi::channels::ogre_mpmc_queue::tests::on_the_fly_streams ... 1) streams 1 & 2 about to receive a message 2) stream3 should timeout 3) several creations and removals ok <0.015s> test multi::channels::ogre_mpmc_queue::tests::payload_dropping ... ok <0.000s> test multi::channels::ogre_mpmc_queue::tests::performance_measurements ... OgreMPMCQueue (same task / same thread): 27333472.97/s -- 10485760 items processed in 383.623406ms OgreMPMCQueue (different task / same thread): 7658850.70/s -- 10485760 items processed in 1.369103591s OgreMPMCQueue (different task / different thread): 17193669.65/s -- 10485760 items processed in 609.861665ms ok <2.364s> test multi::channels::ogre_mpmc_queue::tests::stream_and_channel_dropping ... Dropping the channel before the stream consumes the element: received: a Dropping the stream before the channel produces something, then another stream is created to consume the element: received: a ok <0.000s> test multi::tests::async_elements ... 2023-03-06T16:34:40.754Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'async event: Stream Pipeline #1' started: Futures (with timeouts of 2s) / Fallible Items & Metrics 2023-03-06T16:34:40.754Z 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-06T16:34:41.756Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async event: Stream Pipeline #1' ended after running for 1.001719399s -- stats: | ok: 4 events; avg 1.001695633s - 3.99313/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-06T16:34:41.756Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async event: Stream Pipeline #2' ended after running for 1.001710884s -- stats: | ok: 4 events; avg 1.001703262s - 3.99317/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 0 events; avg 0ns - 0.00000/sec ok <1.005s> test multi::tests::delete_pipelines ... 2023-03-06T16:34:41.759Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.759Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 15.681µs -- stats: | ok: 0 events 2023-03-06T16:34:41.759Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.761Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.155682ms -- stats: | ok: 0 events 2023-03-06T16:34:41.763Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.764Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.317µs -- stats: | ok: 0 events 2023-03-06T16:34:41.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-06T16:34:41.766Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.867µs -- stats: | ok: 0 events 2023-03-06T16:34:41.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-06T16:34:41.768Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.091309ms -- stats: | ok: 0 events 2023-03-06T16:34:41.770Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.770Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.358µs -- stats: | ok: 0 events 2023-03-06T16:34:41.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-06T16:34:41.772Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.155712ms -- stats: | ok: 0 events 2023-03-06T16:34:41.774Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.774Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.472µs -- stats: | ok: 0 events 2023-03-06T16:34:41.774Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.777Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.298463ms -- stats: | ok: 0 events 2023-03-06T16:34:41.779Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 15.485µs -- stats: | ok: 0 events 2023-03-06T16:34:41.779Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090924ms -- stats: | ok: 0 events 2023-03-06T16:34:41.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-06T16:34:41.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 54.478µs -- stats: | ok: 0 events 2023-03-06T16:34:41.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-06T16:34:41.785Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.2737ms -- stats: | ok: 0 events 2023-03-06T16:34:41.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-06T16:34:41.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.443µs -- stats: | ok: 0 events 2023-03-06T16:34:41.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-06T16:34:41.790Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.121539ms -- stats: | ok: 0 events 2023-03-06T16:34:41.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-06T16:34:41.792Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.815µs -- stats: | ok: 0 events 2023-03-06T16:34:41.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-06T16:34:41.794Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.088244ms -- stats: | ok: 0 events 2023-03-06T16:34:41.796Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.796Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 10.733µs -- stats: | ok: 0 events 2023-03-06T16:34:41.796Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.798Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.130586ms -- stats: | ok: 0 events 2023-03-06T16:34:41.800Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.414µs -- stats: | ok: 0 events 2023-03-06T16:34:41.800Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.803Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.087631ms -- stats: | ok: 0 events 2023-03-06T16:34:41.805Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.805Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.019µs -- stats: | ok: 0 events 2023-03-06T16:34:41.805Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.807Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.089775ms -- stats: | ok: 0 events 2023-03-06T16:34:41.809Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.809Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.854µs -- stats: | ok: 0 events 2023-03-06T16:34:41.809Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.811Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.119878ms -- stats: | ok: 0 events 2023-03-06T16:34:41.813Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.813Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.275µs -- stats: | ok: 0 events 2023-03-06T16:34:41.813Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.816Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.279717ms -- stats: | ok: 0 events 2023-03-06T16:34:41.818Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.818Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.452µs -- stats: | ok: 0 events 2023-03-06T16:34:41.818Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.820Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.123323ms -- stats: | ok: 0 events 2023-03-06T16:34:41.822Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.822Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.958µs -- stats: | ok: 0 events 2023-03-06T16:34:41.822Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.825Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.546221ms -- stats: | ok: 0 events 2023-03-06T16:34:41.827Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.827Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.654µs -- stats: | ok: 0 events 2023-03-06T16:34:41.827Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.829Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.091521ms -- stats: | ok: 0 events 2023-03-06T16:34:41.831Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.831Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.705µs -- stats: | ok: 0 events 2023-03-06T16:34:41.831Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.833Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.087296ms -- stats: | ok: 0 events 2023-03-06T16:34:41.835Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.835Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.161µs -- stats: | ok: 0 events 2023-03-06T16:34:41.835Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.837Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.281592ms -- stats: | ok: 0 events 2023-03-06T16:34:41.840Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.840Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.741µs -- stats: | ok: 0 events 2023-03-06T16:34:41.840Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.842Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.087246ms -- stats: | ok: 0 events 2023-03-06T16:34:41.844Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.844Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.932µs -- stats: | ok: 0 events 2023-03-06T16:34:41.844Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.846Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.084556ms -- stats: | ok: 0 events 2023-03-06T16:34:41.848Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.848Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.18µs -- stats: | ok: 0 events 2023-03-06T16:34:41.848Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.850Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.202726ms -- stats: | ok: 0 events 2023-03-06T16:34:41.852Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.852Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.638µs -- stats: | ok: 0 events 2023-03-06T16:34:41.852Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.855Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.108044ms -- stats: | ok: 0 events 2023-03-06T16:34:41.857Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.857Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.2µs -- stats: | ok: 0 events 2023-03-06T16:34:41.857Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.859Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.084744ms -- stats: | ok: 0 events 2023-03-06T16:34:41.861Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.861Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.285µs -- stats: | ok: 0 events 2023-03-06T16:34:41.861Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.863Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.112598ms -- stats: | ok: 0 events 2023-03-06T16:34:41.865Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.865Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 44.169µs -- stats: | ok: 0 events 2023-03-06T16:34:41.865Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.867Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.15299ms -- stats: | ok: 0 events 2023-03-06T16:34:41.870Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.055µs -- stats: | ok: 0 events 2023-03-06T16:34:41.870Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.872Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.114106ms -- stats: | ok: 0 events 2023-03-06T16:34:41.874Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.874Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.161µs -- stats: | ok: 0 events 2023-03-06T16:34:41.874Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.876Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.15238ms -- stats: | ok: 0 events 2023-03-06T16:34:41.878Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.878Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.87µs -- stats: | ok: 0 events 2023-03-06T16:34:41.878Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.881Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.124ms -- stats: | ok: 0 events 2023-03-06T16:34:41.883Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.883Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.558µs -- stats: | ok: 0 events 2023-03-06T16:34:41.883Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.885Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.088224ms -- stats: | ok: 0 events 2023-03-06T16:34:41.887Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.887Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.492µs -- stats: | ok: 0 events 2023-03-06T16:34:41.887Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.888Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.067785ms -- stats: | ok: 0 events 2023-03-06T16:34:41.890Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.890Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 51.915µs -- stats: | ok: 0 events 2023-03-06T16:34:41.890Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.892Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.286126ms -- stats: | ok: 0 events 2023-03-06T16:34:41.895Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.895Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.271µs -- stats: | ok: 0 events 2023-03-06T16:34:41.895Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.897Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.084385ms -- stats: | ok: 0 events 2023-03-06T16:34:41.899Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.899Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.248µs -- stats: | ok: 0 events 2023-03-06T16:34:41.899Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.901Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.139817ms -- stats: | ok: 0 events 2023-03-06T16:34:41.903Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.903Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 42.788µs -- stats: | ok: 0 events 2023-03-06T16:34:41.903Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.906Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.285842ms -- stats: | ok: 0 events 2023-03-06T16:34:41.908Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.908Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.808µs -- stats: | ok: 0 events 2023-03-06T16:34:41.908Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.910Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.083998ms -- stats: | ok: 0 events 2023-03-06T16:34:41.912Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.912Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.378µs -- stats: | ok: 0 events 2023-03-06T16:34:41.912Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.914Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.154481ms -- stats: | ok: 0 events 2023-03-06T16:34:41.916Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.916Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.338µs -- stats: | ok: 0 events 2023-03-06T16:34:41.916Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.919Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.268ms -- stats: | ok: 0 events 2023-03-06T16:34:41.921Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.921Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.202µs -- stats: | ok: 0 events 2023-03-06T16:34:41.921Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.923Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.112362ms -- stats: | ok: 0 events 2023-03-06T16:34:41.925Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.925Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 47.138µs -- stats: | ok: 0 events 2023-03-06T16:34:41.925Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.927Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.282609ms -- stats: | ok: 0 events 2023-03-06T16:34:41.930Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.930Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.008µs -- stats: | ok: 0 events 2023-03-06T16:34:41.930Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.932Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.069733ms -- stats: | ok: 0 events 2023-03-06T16:34:41.934Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.934Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.364µs -- stats: | ok: 0 events 2023-03-06T16:34:41.934Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.936Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.13404ms -- stats: | ok: 0 events 2023-03-06T16:34:41.938Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.938Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.526µs -- stats: | ok: 0 events 2023-03-06T16:34:41.938Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.940Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.11652ms -- stats: | ok: 0 events 2023-03-06T16:34:41.942Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.942Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 19.181µs -- stats: | ok: 0 events 2023-03-06T16:34:41.942Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.945Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.223615ms -- stats: | ok: 0 events 2023-03-06T16:34:41.947Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.947Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.121µs -- stats: | ok: 0 events 2023-03-06T16:34:41.947Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.949Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.084081ms -- stats: | ok: 0 events 2023-03-06T16:34:41.951Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.951Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.871µs -- stats: | ok: 0 events 2023-03-06T16:34:41.951Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.953Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.269773ms -- stats: | ok: 0 events 2023-03-06T16:34:41.956Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.956Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.365µs -- stats: | ok: 0 events 2023-03-06T16:34:41.956Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.958Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.085083ms -- stats: | ok: 0 events 2023-03-06T16:34:41.960Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.960Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 32.441µs -- stats: | ok: 0 events 2023-03-06T16:34:41.960Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.961Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.102477ms -- stats: | ok: 0 events 2023-03-06T16:34:41.963Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.963Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.189µs -- stats: | ok: 0 events 2023-03-06T16:34:41.963Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.966Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.263782ms -- stats: | ok: 0 events 2023-03-06T16:34:41.968Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.968Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.662µs -- stats: | ok: 0 events 2023-03-06T16:34:41.968Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.970Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.085352ms -- stats: | ok: 0 events 2023-03-06T16:34:41.972Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.972Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 53.637µs -- stats: | ok: 0 events 2023-03-06T16:34:41.972Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.974Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.157993ms -- stats: | ok: 0 events 2023-03-06T16:34:41.977Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.977Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.883µs -- stats: | ok: 0 events 2023-03-06T16:34:41.977Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.979Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.062489ms -- stats: | ok: 0 events 2023-03-06T16:34:41.981Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.981Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.122µs -- stats: | ok: 0 events 2023-03-06T16:34:41.981Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.983Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.08661ms -- stats: | ok: 0 events 2023-03-06T16:34:41.985Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.985Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.872µs -- stats: | ok: 0 events 2023-03-06T16:34:41.985Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.987Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.274833ms -- stats: | ok: 0 events 2023-03-06T16:34:41.990Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.990Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.279µs -- stats: | ok: 0 events 2023-03-06T16:34:41.990Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.992Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.085361ms -- stats: | ok: 0 events 2023-03-06T16:34:41.994Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.994Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.836µs -- stats: | ok: 0 events 2023-03-06T16:34:41.994Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.996Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.086894ms -- stats: | ok: 0 events 2023-03-06T16:34:41.998Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:41.998Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 47.423µs -- stats: | ok: 0 events 2023-03-06T16:34:41.998Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.000Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.13696ms -- stats: | ok: 0 events 2023-03-06T16:34:42.003Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.003Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.947µs -- stats: | ok: 0 events 2023-03-06T16:34:42.003Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.005Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.101292ms -- stats: | ok: 0 events 2023-03-06T16:34:42.007Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.007Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.255µs -- stats: | ok: 0 events 2023-03-06T16:34:42.007Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.009Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.064648ms -- stats: | ok: 0 events 2023-03-06T16:34:42.011Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.011Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 31.953µs -- stats: | ok: 0 events 2023-03-06T16:34:42.011Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.012Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.098611ms -- stats: | ok: 0 events 2023-03-06T16:34:42.014Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.014Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 31.69µs -- stats: | ok: 0 events 2023-03-06T16:34:42.014Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.017Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.402135ms -- stats: | ok: 0 events 2023-03-06T16:34:42.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.019Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.118µs -- stats: | ok: 0 events 2023-03-06T16:34:42.019Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.021Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.138598ms -- stats: | ok: 0 events 2023-03-06T16:34:42.023Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.023Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.555µs -- stats: | ok: 0 events 2023-03-06T16:34:42.023Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.025Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.27264ms -- stats: | ok: 0 events 2023-03-06T16:34:42.028Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.028Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.068µs -- stats: | ok: 0 events 2023-03-06T16:34:42.028Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.085202ms -- stats: | ok: 0 events 2023-03-06T16:34:42.032Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.032Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.569µs -- stats: | ok: 0 events 2023-03-06T16:34:42.032Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.117298ms -- stats: | ok: 0 events 2023-03-06T16:34:42.036Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 43.627µs -- stats: | ok: 0 events 2023-03-06T16:34:42.036Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.039Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.323101ms -- stats: | ok: 0 events 2023-03-06T16:34:42.041Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.041Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.616µs -- stats: | ok: 0 events 2023-03-06T16:34:42.041Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.043Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.128184ms -- stats: | ok: 0 events 2023-03-06T16:34:42.045Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.045Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.645µs -- stats: | ok: 0 events 2023-03-06T16:34:42.045Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.046Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.069405ms -- stats: | ok: 0 events 2023-03-06T16:34:42.048Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.048Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 45.361µs -- stats: | ok: 0 events 2023-03-06T16:34:42.048Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.051Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.313166ms -- stats: | ok: 0 events 2023-03-06T16:34:42.053Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.053Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.094µs -- stats: | ok: 0 events 2023-03-06T16:34:42.053Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.055Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090363ms -- stats: | ok: 0 events 2023-03-06T16:34:42.057Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.057Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.397µs -- stats: | ok: 0 events 2023-03-06T16:34:42.057Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.059Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.155747ms -- stats: | ok: 0 events 2023-03-06T16:34:42.061Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.061Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.85µs -- stats: | ok: 0 events 2023-03-06T16:34:42.061Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.064Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.160095ms -- stats: | ok: 0 events 2023-03-06T16:34:42.066Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.066Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.894µs -- stats: | ok: 0 events 2023-03-06T16:34:42.066Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.068Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.089335ms -- stats: | ok: 0 events 2023-03-06T16:34:42.070Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.070Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.941µs -- stats: | ok: 0 events 2023-03-06T16:34:42.070Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.072Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.277047ms -- stats: | ok: 0 events 2023-03-06T16:34:42.075Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.075Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.601µs -- stats: | ok: 0 events 2023-03-06T16:34:42.075Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.077Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.089764ms -- stats: | ok: 0 events 2023-03-06T16:34:42.079Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.079Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.763µs -- stats: | ok: 0 events 2023-03-06T16:34:42.079Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.080Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.120471ms -- stats: | ok: 0 events 2023-03-06T16:34:42.082Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.082Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.762µs -- stats: | ok: 0 events 2023-03-06T16:34:42.082Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.085Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.292361ms -- stats: | ok: 0 events 2023-03-06T16:34:42.087Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.087Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.813µs -- stats: | ok: 0 events 2023-03-06T16:34:42.087Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.089Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.089666ms -- stats: | ok: 0 events 2023-03-06T16:34:42.091Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.091Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.102µs -- stats: | ok: 0 events 2023-03-06T16:34:42.091Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.092Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.278995ms -- stats: | ok: 0 events 2023-03-06T16:34:42.095Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.095Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.497µs -- stats: | ok: 0 events 2023-03-06T16:34:42.095Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.097Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.084983ms -- stats: | ok: 0 events 2023-03-06T16:34:42.099Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.099Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.355µs -- stats: | ok: 0 events 2023-03-06T16:34:42.099Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.101Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.140642ms -- stats: | ok: 0 events 2023-03-06T16:34:42.103Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.103Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.892µs -- stats: | ok: 0 events 2023-03-06T16:34:42.103Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.105Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.27769ms -- stats: | ok: 0 events 2023-03-06T16:34:42.108Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.108Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.572µs -- stats: | ok: 0 events 2023-03-06T16:34:42.108Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.110Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.085516ms -- stats: | ok: 0 events 2023-03-06T16:34:42.112Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.112Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.816µs -- stats: | ok: 0 events 2023-03-06T16:34:42.112Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.114Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.08514ms -- stats: | ok: 0 events 2023-03-06T16:34:42.116Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.116Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.825µs -- stats: | ok: 0 events 2023-03-06T16:34:42.116Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.119Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.328653ms -- stats: | ok: 0 events 2023-03-06T16:34:42.121Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.121Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 11.937µs -- stats: | ok: 0 events 2023-03-06T16:34:42.121Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.123Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.084424ms -- stats: | ok: 0 events 2023-03-06T16:34:42.125Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.125Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 46.608µs -- stats: | ok: 0 events 2023-03-06T16:34:42.125Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.127Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.302897ms -- stats: | ok: 0 events 2023-03-06T16:34:42.130Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.130Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.684µs -- stats: | ok: 0 events 2023-03-06T16:34:42.130Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.132Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.083475ms -- stats: | ok: 0 events 2023-03-06T16:34:42.134Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.134Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 6.397µs -- stats: | ok: 0 events 2023-03-06T16:34:42.134Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.136Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.064301ms -- stats: | ok: 0 events 2023-03-06T16:34:42.137Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.137Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.131µs -- stats: | ok: 0 events 2023-03-06T16:34:42.137Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.139Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.283187ms -- stats: | ok: 0 events 2023-03-06T16:34:42.142Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.142Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.875µs -- stats: | ok: 0 events 2023-03-06T16:34:42.142Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.144Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.089727ms -- stats: | ok: 0 events 2023-03-06T16:34:42.146Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.146Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.245µs -- stats: | ok: 0 events 2023-03-06T16:34:42.146Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.148Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.154312ms -- stats: | ok: 0 events 2023-03-06T16:34:42.150Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.150Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.467µs -- stats: | ok: 0 events 2023-03-06T16:34:42.150Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.277341ms -- stats: | ok: 0 events 2023-03-06T16:34:42.155Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.155Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.065µs -- stats: | ok: 0 events 2023-03-06T16:34:42.155Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.157Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.085662ms -- stats: | ok: 0 events 2023-03-06T16:34:42.159Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.159Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.3µs -- stats: | ok: 0 events 2023-03-06T16:34:42.159Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.161Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.157366ms -- stats: | ok: 0 events 2023-03-06T16:34:42.163Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.164Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.949µs -- stats: | ok: 0 events 2023-03-06T16:34:42.164Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.11669ms -- stats: | ok: 0 events 2023-03-06T16:34:42.168Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.168Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.264µs -- stats: | ok: 0 events 2023-03-06T16:34:42.168Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.170Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.088388ms -- stats: | ok: 0 events 2023-03-06T16:34:42.172Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.172Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.065µs -- stats: | ok: 0 events 2023-03-06T16:34:42.172Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.174Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.277122ms -- stats: | ok: 0 events 2023-03-06T16:34:42.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.177Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.05µs -- stats: | ok: 0 events 2023-03-06T16:34:42.177Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.179Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.08425ms -- stats: | ok: 0 events 2023-03-06T16:34:42.181Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.181Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.689µs -- stats: | ok: 0 events 2023-03-06T16:34:42.181Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.183Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.276326ms -- stats: | ok: 0 events 2023-03-06T16:34:42.185Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.595µs -- stats: | ok: 0 events 2023-03-06T16:34:42.185Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.188Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.18622ms -- stats: | ok: 0 events 2023-03-06T16:34:42.190Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.190Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.863µs -- stats: | ok: 0 events 2023-03-06T16:34:42.190Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.192Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.089826ms -- stats: | ok: 0 events 2023-03-06T16:34:42.194Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.194Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.626µs -- stats: | ok: 0 events 2023-03-06T16:34:42.194Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.196Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.154462ms -- stats: | ok: 0 events 2023-03-06T16:34:42.199Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.199Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.057µs -- stats: | ok: 0 events 2023-03-06T16:34:42.199Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.201Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.104736ms -- stats: | ok: 0 events 2023-03-06T16:34:42.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-06T16:34:42.203Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 14.22µs -- stats: | ok: 0 events 2023-03-06T16:34:42.203Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.205Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.144705ms -- stats: | ok: 0 events 2023-03-06T16:34:42.206Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.206Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.797µs -- stats: | ok: 0 events 2023-03-06T16:34:42.206Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.209Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.379317ms -- stats: | ok: 0 events 2023-03-06T16:34:42.211Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.211Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.001µs -- stats: | ok: 0 events 2023-03-06T16:34:42.211Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.213Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.081342ms -- stats: | ok: 0 events 2023-03-06T16:34:42.215Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.215Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.18µs -- stats: | ok: 0 events 2023-03-06T16:34:42.215Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.217Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.153285ms -- stats: | ok: 0 events 2023-03-06T16:34:42.219Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.220Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.414µs -- stats: | ok: 0 events 2023-03-06T16:34:42.220Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.222Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.125737ms -- stats: | ok: 0 events 2023-03-06T16:34:42.224Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.224Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.454µs -- stats: | ok: 0 events 2023-03-06T16:34:42.224Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.226Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090718ms -- stats: | ok: 0 events 2023-03-06T16:34:42.228Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.228Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.972µs -- stats: | ok: 0 events 2023-03-06T16:34:42.228Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.230Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.088443ms -- stats: | ok: 0 events 2023-03-06T16:34:42.232Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.232Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.373µs -- stats: | ok: 0 events 2023-03-06T16:34:42.232Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.235Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.242948ms -- stats: | ok: 0 events 2023-03-06T16:34:42.237Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.237Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.579µs -- stats: | ok: 0 events 2023-03-06T16:34:42.237Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.239Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.090304ms -- stats: | ok: 0 events 2023-03-06T16:34:42.241Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.241Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.529µs -- stats: | ok: 0 events 2023-03-06T16:34:42.241Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.269891ms -- stats: | ok: 0 events 2023-03-06T16:34:42.246Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.246Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.524µs -- stats: | ok: 0 events 2023-03-06T16:34:42.246Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.09113ms -- stats: | ok: 0 events 2023-03-06T16:34:42.250Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.250Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.367µs -- stats: | ok: 0 events 2023-03-06T16:34:42.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-06T16:34:42.252Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.127646ms -- stats: | ok: 0 events 2023-03-06T16:34:42.254Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.254Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.571µs -- stats: | ok: 0 events 2023-03-06T16:34:42.254Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.275378ms -- stats: | ok: 0 events 2023-03-06T16:34:42.259Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.259Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.299µs -- stats: | ok: 0 events 2023-03-06T16:34:42.259Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.261Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.082276ms -- stats: | ok: 0 events 2023-03-06T16:34:42.263Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.263Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 11.738µs -- stats: | ok: 0 events 2023-03-06T16:34:42.263Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.264Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.279211ms -- stats: | ok: 0 events 2023-03-06T16:34:42.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-06T16:34:42.267Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.904µs -- stats: | ok: 0 events 2023-03-06T16:34:42.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-06T16:34:42.269Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.110484ms -- stats: | ok: 0 events 2023-03-06T16:34:42.271Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.271Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 11.646µs -- stats: | ok: 0 events 2023-03-06T16:34:42.271Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.273Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.190878ms -- stats: | ok: 0 events 2023-03-06T16:34:42.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-06T16:34:42.275Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.852µs -- stats: | ok: 0 events 2023-03-06T16:34:42.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-06T16:34:42.277Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.271925ms -- stats: | ok: 0 events 2023-03-06T16:34:42.280Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.280Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.663µs -- stats: | ok: 0 events 2023-03-06T16:34:42.280Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.282Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.091783ms -- stats: | ok: 0 events 2023-03-06T16:34:42.284Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.284Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.909µs -- stats: | ok: 0 events 2023-03-06T16:34:42.284Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.286Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.160741ms -- stats: | ok: 0 events 2023-03-06T16:34:42.288Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.288Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.589µs -- stats: | ok: 0 events 2023-03-06T16:34:42.288Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.291Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.278044ms -- stats: | ok: 0 events 2023-03-06T16:34:42.293Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.293Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.301µs -- stats: | ok: 0 events 2023-03-06T16:34:42.293Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.295Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.086813ms -- stats: | ok: 0 events 2023-03-06T16:34:42.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-06T16:34:42.297Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 9.259µs -- stats: | ok: 0 events 2023-03-06T16:34:42.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-06T16:34:42.299Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.066295ms -- stats: | ok: 0 events 2023-03-06T16:34:42.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-06T16:34:42.301Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.407µs -- stats: | ok: 0 events 2023-03-06T16:34:42.301Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.303Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.094159ms -- stats: | ok: 0 events 2023-03-06T16:34:42.306Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.306Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 12.977µs -- stats: | ok: 0 events 2023-03-06T16:34:42.306Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.308Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.129823ms -- stats: | ok: 0 events 2023-03-06T16:34:42.310Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.310Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 13.725µs -- stats: | ok: 0 events 2023-03-06T16:34:42.310Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.312Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.084198ms -- stats: | ok: 0 events 2023-03-06T16:34:42.314Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.316Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #2' ended after running for 2.157577ms -- stats: | ok: 1 events ok <0.562s> test multi::tests::demux ... 2023-03-06T16:34:42.321Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.321Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.321Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.321Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.321Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.321Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:42.425Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO: Pipeline #1' ended after running for 103.745013ms -- stats: | ok: 4 events 2023-03-06T16:34:42.425Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO: Pipeline #2' ended after running for 103.756872ms -- stats: | ok: 4 events 2023-03-06T16:34:42.425Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR: Pipeline #1' ended after running for 103.759783ms -- stats: | ok: 6 events 2023-03-06T16:34:42.425Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR: Pipeline #2' ended after running for 103.754191ms -- stats: | ok: 6 events 2023-03-06T16:34:42.425Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIX: Pipeline #1' ended after running for 103.788429ms -- stats: | ok: 1 events 2023-03-06T16:34:42.425Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIX: Pipeline #2' ended after running for 103.77931ms -- stats: | ok: 1 events ok <0.108s> test multi::tests::doc_tests ... 2023-03-06T16:34:42.429Z 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-06T16:34:42.429Z 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-06T16:34:42.429Z 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-06T16:34:42.431Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: local screen' ended after running for 2.220213ms -- stats: | ok: 2 events 2023-03-06T16:34:42.431Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: zeta receiver' ended after running for 2.227483ms -- stats: | ok: 2 events 2023-03-06T16:34:42.431Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: earth snapper' ended after running for 2.228535ms -- stats: | ok: 2 events ok <0.007s> test multi::tests::error_handling ... 2023-03-06T16:34:42.436Z 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-06T16:34:42.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'Event with error handling: Pipeline #1' yielded ERROR '"BLOW CODE received: 79"' in 123ns Pipeline #1: ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-06T16:34:42.436Z 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-06T16:34:42.436Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'Event with error handling: Pipeline #2' yielded ERROR '"BLOW CODE received: 79"' in 112ns Pipeline #2: ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-06T16:34:42.438Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with error handling: Pipeline #1' ended after running for 2.158952ms -- stats: | ok: 3 events; avg 558ns - 1389.56308/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 123ns - 463.18769/sec 2023-03-06T16:34:42.438Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with error handling: Pipeline #2' ended after running for 2.217569ms -- stats: | ok: 3 events; avg 368ns - 1352.83276/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 112ns - 450.94425/sec ok <0.007s> test multi::tests::performance_measurements ... metricfull_non_futures_non_fallible_multi: 11360158.22/s -- 4194304 items processed in 369.211759ms metricless_non_futures_non_fallible_multi: 12085209.36/s -- 4194304 items processed in 347.06093ms par_metricless_non_futures_non_fallible_multi: 5321429.22/s -- 4194304 items processed in 788.191259ms metricfull_futures_fallible_multi: 7047626.75/s -- 4194304 items processed in 595.137079ms metricless_futures_fallible_multi: 9703180.07/s -- 4194304 items processed in 432.260761ms timeoutable_metricfull_futures_fallible_multi: 4422839.25/s -- 3145728 items processed in 711.246288ms timeoutable_metricless_futures_fallible_multi: 5618595.68/s -- 3145728 items processed in 559.87798ms ok <3.804s> test multi::tests::simple_pipelines ... 2023-03-06T16:34:46.247Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Simple Event: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.247Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Simple Event: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Simple Event: Pipeline #1' ended after running for 2.076767ms -- stats: | ok: 2 events 2023-03-06T16:34:46.249Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Simple Event: Pipeline #2' ended after running for 2.074793ms -- stats: | ok: 2 events ok <0.006s> test multi::tests::stats ... 2023-03-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.254Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.255Z 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-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #0 for non_future/non_fallible event' ended after running for 1.830553ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #1 for non_future/non_fallible event' ended after running for 1.813113ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #2 for non_future/non_fallible event' ended after running for 1.814883ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #3 for non_future/non_fallible event' ended after running for 1.817015ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #4 for non_future/non_fallible event' ended after running for 1.819061ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #5 for non_future/non_fallible event' ended after running for 1.820878ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #6 for non_future/non_fallible event' ended after running for 1.822973ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #7 for non_future/non_fallible event' ended after running for 1.825153ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #8 for non_future/non_fallible event' ended after running for 1.827101ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #9 for non_future/non_fallible event' ended after running for 1.829262ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #10 for non_future/non_fallible event' ended after running for 1.831551ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #11 for non_future/non_fallible event' ended after running for 1.833656ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #12 for non_future/non_fallible event' ended after running for 1.836015ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #13 for non_future/non_fallible event' ended after running for 1.838298ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #14 for non_future/non_fallible event' ended after running for 1.839991ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #15 for non_future/non_fallible event' ended after running for 1.842126ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #16 for non_future/non_fallible event' ended after running for 1.844488ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #17 for non_future/non_fallible event' ended after running for 1.84667ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #18 for non_future/non_fallible event' ended after running for 1.848828ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #19 for non_future/non_fallible event' ended after running for 1.850309ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #20 for non_future/non_fallible event' ended after running for 1.852566ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #21 for non_future/non_fallible event' ended after running for 1.854878ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #22 for non_future/non_fallible event' ended after running for 1.857365ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #23 for non_future/non_fallible event' ended after running for 1.860991ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #24 for non_future/non_fallible event' ended after running for 1.862979ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #25 for non_future/non_fallible event' ended after running for 1.865502ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #26 for non_future/non_fallible event' ended after running for 1.868428ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #27 for non_future/non_fallible event' ended after running for 1.870887ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #28 for non_future/non_fallible event' ended after running for 1.873516ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #29 for non_future/non_fallible event' ended after running for 1.875874ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #30 for non_future/non_fallible event' ended after running for 1.877765ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #31 for non_future/non_fallible event' ended after running for 1.880577ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #32 for non_future/non_fallible event' ended after running for 1.882964ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #33 for non_future/non_fallible event' ended after running for 1.885414ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #34 for non_future/non_fallible event' ended after running for 1.887809ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #35 for non_future/non_fallible event' ended after running for 1.8903ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #36 for non_future/non_fallible event' ended after running for 1.891408ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #37 for non_future/non_fallible event' ended after running for 1.893363ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #38 for non_future/non_fallible event' ended after running for 1.895671ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #39 for non_future/non_fallible event' ended after running for 1.898263ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #40 for non_future/non_fallible event' ended after running for 1.900621ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #41 for non_future/non_fallible event' ended after running for 1.903337ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #42 for non_future/non_fallible event' ended after running for 1.905736ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #43 for non_future/non_fallible event' ended after running for 1.908286ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #44 for non_future/non_fallible event' ended after running for 1.910281ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #45 for non_future/non_fallible event' ended after running for 1.913144ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #46 for non_future/non_fallible event' ended after running for 1.919329ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #47 for non_future/non_fallible event' ended after running for 1.922234ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #48 for non_future/non_fallible event' ended after running for 1.924667ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #49 for non_future/non_fallible event' ended after running for 1.927896ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #50 for non_future/non_fallible event' ended after running for 1.952348ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #51 for non_future/non_fallible event' ended after running for 1.95419ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #52 for non_future/non_fallible event' ended after running for 1.956681ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #53 for non_future/non_fallible event' ended after running for 1.959091ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #54 for non_future/non_fallible event' ended after running for 1.96135ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #55 for non_future/non_fallible event' ended after running for 1.964052ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #56 for non_future/non_fallible event' ended after running for 1.980769ms -- stats: | ok: 1 events 2023-03-06T16:34:46.256Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #57 for non_future/non_fallible event' ended after running for 1.982888ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #58 for non_future/non_fallible event' ended after running for 1.98537ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #59 for non_future/non_fallible event' ended after running for 1.988039ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #60 for non_future/non_fallible event' ended after running for 1.990863ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #61 for non_future/non_fallible event' ended after running for 1.808814ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #62 for non_future/non_fallible event' ended after running for 1.808213ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #63 for non_future/non_fallible event' ended after running for 1.809107ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #64 for non_future/non_fallible event' ended after running for 1.809832ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #65 for non_future/non_fallible event' ended after running for 1.81196ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #66 for non_future/non_fallible event' ended after running for 1.813379ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #67 for non_future/non_fallible event' ended after running for 1.815768ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #68 for non_future/non_fallible event' ended after running for 1.817139ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #69 for non_future/non_fallible event' ended after running for 1.81836ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #70 for non_future/non_fallible event' ended after running for 1.819672ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #71 for non_future/non_fallible event' ended after running for 1.822146ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #72 for non_future/non_fallible event' ended after running for 1.82355ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #73 for non_future/non_fallible event' ended after running for 1.825034ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #74 for non_future/non_fallible event' ended after running for 1.826095ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #75 for non_future/non_fallible event' ended after running for 1.827353ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #76 for non_future/non_fallible event' ended after running for 1.82866ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #77 for non_future/non_fallible event' ended after running for 1.830039ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #78 for non_future/non_fallible event' ended after running for 1.831444ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #79 for non_future/non_fallible event' ended after running for 1.833849ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #80 for non_future/non_fallible event' ended after running for 1.835241ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #81 for non_future/non_fallible event' ended after running for 1.836988ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #82 for non_future/non_fallible event' ended after running for 1.838285ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #83 for non_future/non_fallible event' ended after running for 1.84014ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #84 for non_future/non_fallible event' ended after running for 1.841282ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #85 for non_future/non_fallible event' ended after running for 1.842291ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #86 for non_future/non_fallible event' ended after running for 1.844117ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #87 for non_future/non_fallible event' ended after running for 1.845471ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #88 for non_future/non_fallible event' ended after running for 1.846724ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #89 for non_future/non_fallible event' ended after running for 1.847949ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #90 for non_future/non_fallible event' ended after running for 1.849443ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #91 for non_future/non_fallible event' ended after running for 1.850353ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #92 for non_future/non_fallible event' ended after running for 1.851818ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #93 for non_future/non_fallible event' ended after running for 1.853381ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #94 for non_future/non_fallible event' ended after running for 1.854955ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #95 for non_future/non_fallible event' ended after running for 1.85618ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #96 for non_future/non_fallible event' ended after running for 1.857538ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #97 for non_future/non_fallible event' ended after running for 1.858804ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #98 for non_future/non_fallible event' ended after running for 1.859809ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #99 for non_future/non_fallible event' ended after running for 1.860534ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #100 for non_future/non_fallible event' ended after running for 1.86184ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #101 for non_future/non_fallible event' ended after running for 1.862997ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #102 for non_future/non_fallible event' ended after running for 1.864007ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #103 for non_future/non_fallible event' ended after running for 1.865226ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #104 for non_future/non_fallible event' ended after running for 1.866421ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #105 for non_future/non_fallible event' ended after running for 1.866983ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #106 for non_future/non_fallible event' ended after running for 1.868039ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #107 for non_future/non_fallible event' ended after running for 1.869058ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #108 for non_future/non_fallible event' ended after running for 1.870152ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #109 for non_future/non_fallible event' ended after running for 1.871404ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #110 for non_future/non_fallible event' ended after running for 1.872657ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #111 for non_future/non_fallible event' ended after running for 1.873933ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #112 for non_future/non_fallible event' ended after running for 1.876287ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #113 for non_future/non_fallible event' ended after running for 1.877223ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #114 for non_future/non_fallible event' ended after running for 1.878455ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #115 for non_future/non_fallible event' ended after running for 1.879669ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #116 for non_future/non_fallible event' ended after running for 1.88107ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #117 for non_future/non_fallible event' ended after running for 1.882309ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #118 for non_future/non_fallible event' ended after running for 1.883515ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #119 for non_future/non_fallible event' ended after running for 1.884166ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #120 for non_future/non_fallible event' ended after running for 1.885172ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #121 for non_future/non_fallible event' ended after running for 1.886376ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #122 for non_future/non_fallible event' ended after running for 1.88629ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #123 for non_future/non_fallible event' ended after running for 1.887399ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #124 for non_future/non_fallible event' ended after running for 1.8885ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #125 for non_future/non_fallible event' ended after running for 1.889673ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #126 for non_future/non_fallible event' ended after running for 1.89081ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #127 for non_future/non_fallible event' ended after running for 1.891642ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #128 for non_future/non_fallible event' ended after running for 1.892765ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #129 for non_future/non_fallible event' ended after running for 1.893941ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #130 for non_future/non_fallible event' ended after running for 1.895954ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #131 for non_future/non_fallible event' ended after running for 1.897004ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #132 for non_future/non_fallible event' ended after running for 1.899292ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #133 for non_future/non_fallible event' ended after running for 1.89922ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #134 for non_future/non_fallible event' ended after running for 1.899951ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #135 for non_future/non_fallible event' ended after running for 1.901179ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #136 for non_future/non_fallible event' ended after running for 1.902379ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #137 for non_future/non_fallible event' ended after running for 1.903761ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #138 for non_future/non_fallible event' ended after running for 1.905007ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #139 for non_future/non_fallible event' ended after running for 1.906207ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #140 for non_future/non_fallible event' ended after running for 1.906916ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #141 for non_future/non_fallible event' ended after running for 1.90777ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #142 for non_future/non_fallible event' ended after running for 1.908863ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #143 for non_future/non_fallible event' ended after running for 1.910481ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #144 for non_future/non_fallible event' ended after running for 1.911718ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #145 for non_future/non_fallible event' ended after running for 1.912833ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #146 for non_future/non_fallible event' ended after running for 1.913994ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #147 for non_future/non_fallible event' ended after running for 1.915308ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #148 for non_future/non_fallible event' ended after running for 1.916492ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #149 for non_future/non_fallible event' ended after running for 1.917515ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #150 for non_future/non_fallible event' ended after running for 1.918104ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #151 for non_future/non_fallible event' ended after running for 1.919198ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #152 for non_future/non_fallible event' ended after running for 1.920378ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #153 for non_future/non_fallible event' ended after running for 1.92149ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #154 for non_future/non_fallible event' ended after running for 1.922628ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #155 for non_future/non_fallible event' ended after running for 1.923197ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #156 for non_future/non_fallible event' ended after running for 1.924439ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #157 for non_future/non_fallible event' ended after running for 1.925525ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #158 for non_future/non_fallible event' ended after running for 1.926758ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #159 for non_future/non_fallible event' ended after running for 1.927941ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #160 for non_future/non_fallible event' ended after running for 1.929169ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #161 for non_future/non_fallible event' ended after running for 1.930544ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #162 for non_future/non_fallible event' ended after running for 1.931813ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #163 for non_future/non_fallible event' ended after running for 1.932808ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #164 for non_future/non_fallible event' ended after running for 1.93412ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #165 for non_future/non_fallible event' ended after running for 1.935562ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #166 for non_future/non_fallible event' ended after running for 1.937474ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #167 for non_future/non_fallible event' ended after running for 1.938309ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #168 for non_future/non_fallible event' ended after running for 1.939646ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #169 for non_future/non_fallible event' ended after running for 1.940902ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #170 for non_future/non_fallible event' ended after running for 1.942071ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #171 for non_future/non_fallible event' ended after running for 1.943236ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #172 for non_future/non_fallible event' ended after running for 1.944196ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #173 for non_future/non_fallible event' ended after running for 1.945565ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #174 for non_future/non_fallible event' ended after running for 1.946764ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #175 for non_future/non_fallible event' ended after running for 1.947963ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #176 for non_future/non_fallible event' ended after running for 1.949204ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #177 for non_future/non_fallible event' ended after running for 1.950223ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #178 for non_future/non_fallible event' ended after running for 1.951197ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #179 for non_future/non_fallible event' ended after running for 1.952537ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #180 for non_future/non_fallible event' ended after running for 1.95368ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #181 for non_future/non_fallible event' ended after running for 1.954909ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #182 for non_future/non_fallible event' ended after running for 1.956136ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #183 for non_future/non_fallible event' ended after running for 1.957083ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #184 for non_future/non_fallible event' ended after running for 1.958334ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #185 for non_future/non_fallible event' ended after running for 1.95949ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #186 for non_future/non_fallible event' ended after running for 1.960613ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #187 for non_future/non_fallible event' ended after running for 1.961571ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #188 for non_future/non_fallible event' ended after running for 1.962801ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #189 for non_future/non_fallible event' ended after running for 1.963801ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #190 for non_future/non_fallible event' ended after running for 1.964943ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #191 for non_future/non_fallible event' ended after running for 1.965789ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #192 for non_future/non_fallible event' ended after running for 1.96688ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #193 for non_future/non_fallible event' ended after running for 1.968049ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #194 for non_future/non_fallible event' ended after running for 1.969359ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #195 for non_future/non_fallible event' ended after running for 1.97059ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #196 for non_future/non_fallible event' ended after running for 1.971856ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #197 for non_future/non_fallible event' ended after running for 1.973029ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #198 for non_future/non_fallible event' ended after running for 1.974093ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #199 for non_future/non_fallible event' ended after running for 1.975049ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #200 for non_future/non_fallible event' ended after running for 1.976414ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #201 for non_future/non_fallible event' ended after running for 1.977508ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #202 for non_future/non_fallible event' ended after running for 1.979603ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #203 for non_future/non_fallible event' ended after running for 1.980862ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #204 for non_future/non_fallible event' ended after running for 1.982077ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #205 for non_future/non_fallible event' ended after running for 1.982945ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #206 for non_future/non_fallible event' ended after running for 1.984268ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #207 for non_future/non_fallible event' ended after running for 1.9855ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #208 for non_future/non_fallible event' ended after running for 1.986745ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #209 for non_future/non_fallible event' ended after running for 1.988182ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #210 for non_future/non_fallible event' ended after running for 1.989428ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #211 for non_future/non_fallible event' ended after running for 1.990729ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #212 for non_future/non_fallible event' ended after running for 1.991942ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #213 for non_future/non_fallible event' ended after running for 1.992913ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #214 for non_future/non_fallible event' ended after running for 1.994195ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #215 for non_future/non_fallible event' ended after running for 1.995412ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #216 for non_future/non_fallible event' ended after running for 1.996657ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #217 for non_future/non_fallible event' ended after running for 1.997831ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #218 for non_future/non_fallible event' ended after running for 1.998325ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #219 for non_future/non_fallible event' ended after running for 1.999243ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #220 for non_future/non_fallible event' ended after running for 2.001443ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #221 for non_future/non_fallible event' ended after running for 2.002767ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #222 for non_future/non_fallible event' ended after running for 2.004022ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #223 for non_future/non_fallible event' ended after running for 2.005255ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #224 for non_future/non_fallible event' ended after running for 2.00646ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #225 for non_future/non_fallible event' ended after running for 2.007241ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #226 for non_future/non_fallible event' ended after running for 2.008428ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #227 for non_future/non_fallible event' ended after running for 2.00914ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #228 for non_future/non_fallible event' ended after running for 2.010388ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #229 for non_future/non_fallible event' ended after running for 2.011642ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #230 for non_future/non_fallible event' ended after running for 2.012862ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #231 for non_future/non_fallible event' ended after running for 2.014147ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #232 for non_future/non_fallible event' ended after running for 2.015345ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #233 for non_future/non_fallible event' ended after running for 2.016416ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #234 for non_future/non_fallible event' ended after running for 2.017035ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #235 for non_future/non_fallible event' ended after running for 2.017632ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #236 for non_future/non_fallible event' ended after running for 2.018814ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #237 for non_future/non_fallible event' ended after running for 2.020086ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #238 for non_future/non_fallible event' ended after running for 2.021946ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #239 for non_future/non_fallible event' ended after running for 2.02325ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #240 for non_future/non_fallible event' ended after running for 2.024514ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #241 for non_future/non_fallible event' ended after running for 2.025523ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #242 for non_future/non_fallible event' ended after running for 2.026906ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #243 for non_future/non_fallible event' ended after running for 2.028171ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #244 for non_future/non_fallible event' ended after running for 2.029399ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #245 for non_future/non_fallible event' ended after running for 2.030664ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #246 for non_future/non_fallible event' ended after running for 2.032043ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #247 for non_future/non_fallible event' ended after running for 2.033262ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #248 for non_future/non_fallible event' ended after running for 2.034438ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #249 for non_future/non_fallible event' ended after running for 2.035747ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #250 for non_future/non_fallible event' ended after running for 2.036947ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #251 for non_future/non_fallible event' ended after running for 2.038237ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #252 for non_future/non_fallible event' ended after running for 2.038899ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #253 for non_future/non_fallible event' ended after running for 2.040619ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #254 for non_future/non_fallible event' ended after running for 2.041487ms -- stats: | ok: 1 events 2023-03-06T16:34:46.257Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #255 for non_future/non_fallible event' ended after running for 2.042784ms -- stats: | ok: 1 events 2023-03-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.261Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.262Z 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-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #122 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.143789ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #123 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.162501ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #124 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.165475ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #125 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.167824ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #126 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.170334ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #127 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.17219ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #128 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.174085ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #129 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.176354ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #130 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.178201ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #131 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.180066ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #132 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.181457ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #133 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.183443ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #134 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.185227ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #135 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.186876ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #136 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.188553ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #137 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.190224ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #138 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.192039ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #139 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.193804ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #140 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.19576ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #141 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.198353ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #142 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.200249ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #143 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.201052ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #144 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.202596ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #145 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.204755ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #146 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.206522ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #147 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.208212ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #148 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.210087ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #149 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.21191ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #150 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.213648ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #151 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.215636ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #152 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.217856ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #153 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.219636ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #154 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.221458ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #155 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.223207ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #156 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.225059ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #157 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.226792ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #158 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.228954ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #159 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.232856ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #160 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.234774ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #161 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.239068ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #162 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.242026ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #163 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.245499ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #164 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.24844ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #165 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.251804ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #166 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.254425ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #167 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.257732ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #168 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.261241ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #169 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.264642ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #170 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.267862ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #171 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.273979ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #172 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.277128ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #173 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.279863ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #174 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.283144ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #175 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.286ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #176 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.289519ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #177 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.292587ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #178 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.295886ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #179 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.299349ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #180 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.302681ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #181 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.306057ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #182 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.310267ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #183 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.320867ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #184 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.325565ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #185 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.32879ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #186 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.332324ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #187 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.335718ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #188 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.339131ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #189 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.342659ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #190 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.345922ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #191 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.349433ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #192 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.353362ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #193 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.356442ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #194 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.360013ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #195 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.363936ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #196 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.367296ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #197 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.370593ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #198 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.374203ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #199 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.378476ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #200 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.382226ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #201 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.385839ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #202 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.389363ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #203 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.395435ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #204 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.399152ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #205 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.40322ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #206 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.406266ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #207 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.410345ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #208 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.413808ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #209 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.417111ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #210 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.420736ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #211 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.424806ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #212 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.427976ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #213 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.431373ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #214 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.436294ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #215 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.44018ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #216 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.444367ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #217 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.449569ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #218 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.453396ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #219 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.457152ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #220 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.460201ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #221 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.464225ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #222 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.467652ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #223 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.471176ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #224 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.474649ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #225 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.478092ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #226 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.480639ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #227 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.483753ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #228 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.486663ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #229 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.489758ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #230 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.492805ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #231 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.496255ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #232 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.499848ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #233 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.503432ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #234 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.507135ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #235 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.511256ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #236 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.514486ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #237 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.518063ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #238 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.521835ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #239 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.525161ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #240 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.528725ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #241 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.532181ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #242 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.535595ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #243 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.538054ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #244 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.542635ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #245 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.54591ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #246 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.549283ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #247 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.552677ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #248 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.555745ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #249 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.559276ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #250 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.562379ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #251 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.565731ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #252 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.569247ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #253 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.572582ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #254 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.575865ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #255 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.578964ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #0 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.581857ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #1 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.585423ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #2 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.59016ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #3 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.594061ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #4 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.605372ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #5 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.610019ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #6 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.613689ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #7 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.617735ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #8 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.62195ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #9 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.624977ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #10 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.62845ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #11 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.631392ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #12 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.634929ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #13 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.638429ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #14 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.642609ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #15 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.646093ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #16 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.649607ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #17 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.652963ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #18 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.656372ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #19 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.659624ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #20 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.663894ms 2023-03-06T16:34:46.414Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #21 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.667088ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #22 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.671014ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #23 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.674379ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #24 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.678111ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #25 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.681292ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #26 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.684657ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #27 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.6883ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #28 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.691541ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #29 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.695008ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #30 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.698606ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #31 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.702029ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #32 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.70586ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #33 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.710214ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #34 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.71406ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #35 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.718022ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #36 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.721377ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #37 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.725064ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #38 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.729762ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #39 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.733378ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #40 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.738881ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #41 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.742214ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #42 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.745691ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #43 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.749733ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #44 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.753242ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #45 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.756747ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #46 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.760263ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #47 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.76332ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #48 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.766778ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #49 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.77081ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #50 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.774583ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #51 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.77805ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #52 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.780782ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #53 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.784194ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #54 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.787329ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #55 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.790678ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #56 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.793609ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #57 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.797046ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #58 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.800416ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #59 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.80359ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #60 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.807072ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #61 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.810536ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #62 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.814034ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #63 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.817071ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #64 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.821141ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #65 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.824405ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #66 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.827754ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #67 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.831114ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #68 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.834506ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #69 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.837735ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #70 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.841095ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #71 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.844082ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #72 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.847678ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #73 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.85101ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #74 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.855198ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #75 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.858364ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #76 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.861225ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #77 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.864585ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #78 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.868133ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #79 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.871256ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #80 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.874963ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #81 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.878319ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #82 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.881268ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #83 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.885185ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #84 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.888395ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #85 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.892047ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #86 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.895484ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #87 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.899458ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #88 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.903025ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #89 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.925523ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #90 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.928751ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #91 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.932293ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #92 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.936652ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #93 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.940239ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #94 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.942976ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #95 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.94644ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #96 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.949933ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #97 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.953233ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #98 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.970596ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #99 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.973915ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #100 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.976985ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #101 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.980228ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #102 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.983558ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #103 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.986923ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #104 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.990315ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #105 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.993794ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #106 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.996587ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #107 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.000128ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #108 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.003732ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #109 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.006667ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #110 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.010871ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #111 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.013962ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #112 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.017432ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #113 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.021002ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #114 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.024323ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #115 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.027865ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #116 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.031409ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #117 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.0345ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #118 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.037963ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #119 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.041568ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #120 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.045221ms 2023-03-06T16:34:46.415Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #121 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.048273ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #122 for future & fallible event' TIMED OUT after 150.21847ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #123 for future & fallible event' TIMED OUT after 150.264326ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #124 for future & fallible event' TIMED OUT after 150.264777ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #125 for future & fallible event' TIMED OUT after 150.264169ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #126 for future & fallible event' TIMED OUT after 150.264236ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #127 for future & fallible event' TIMED OUT after 150.263717ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #128 for future & fallible event' TIMED OUT after 150.262865ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #129 for future & fallible event' TIMED OUT after 150.262377ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #130 for future & fallible event' TIMED OUT after 150.261859ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #131 for future & fallible event' TIMED OUT after 150.261204ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #132 for future & fallible event' TIMED OUT after 150.260502ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #133 for future & fallible event' TIMED OUT after 150.260283ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #134 for future & fallible event' TIMED OUT after 150.260181ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #135 for future & fallible event' TIMED OUT after 150.259871ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #136 for future & fallible event' TIMED OUT after 150.259494ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #137 for future & fallible event' TIMED OUT after 150.259411ms 2023-03-06T16:34:46.564Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #138 for future & fallible event' TIMED OUT after 150.258779ms 2023-03-06T16:34:46.565Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #139 for future & fallible event' TIMED OUT after 151.542209ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #140 for future & fallible event' TIMED OUT after 151.560281ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #141 for future & fallible event' TIMED OUT after 151.561622ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #142 for future & fallible event' TIMED OUT after 151.561865ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #143 for future & fallible event' TIMED OUT after 151.561853ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #144 for future & fallible event' TIMED OUT after 151.561463ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #145 for future & fallible event' TIMED OUT after 151.560555ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #146 for future & fallible event' TIMED OUT after 151.560157ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #147 for future & fallible event' TIMED OUT after 151.559685ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #148 for future & fallible event' TIMED OUT after 151.559928ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #149 for future & fallible event' TIMED OUT after 151.559636ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #150 for future & fallible event' TIMED OUT after 151.559529ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #151 for future & fallible event' TIMED OUT after 151.559176ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #152 for future & fallible event' TIMED OUT after 151.558776ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #153 for future & fallible event' TIMED OUT after 151.558732ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #154 for future & fallible event' TIMED OUT after 151.558683ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #155 for future & fallible event' TIMED OUT after 151.558285ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #156 for future & fallible event' TIMED OUT after 151.557999ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #157 for future & fallible event' TIMED OUT after 151.556869ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #158 for future & fallible event' TIMED OUT after 151.554381ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #159 for future & fallible event' TIMED OUT after 151.554169ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #160 for future & fallible event' TIMED OUT after 151.552236ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #161 for future & fallible event' TIMED OUT after 151.550809ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #162 for future & fallible event' TIMED OUT after 151.548918ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #163 for future & fallible event' TIMED OUT after 151.547427ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #164 for future & fallible event' TIMED OUT after 151.5454ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #165 for future & fallible event' TIMED OUT after 151.543953ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #166 for future & fallible event' TIMED OUT after 151.542141ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #167 for future & fallible event' TIMED OUT after 151.540177ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #168 for future & fallible event' TIMED OUT after 151.538141ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #169 for future & fallible event' TIMED OUT after 151.536347ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #170 for future & fallible event' TIMED OUT after 151.532235ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #171 for future & fallible event' TIMED OUT after 151.530577ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #172 for future & fallible event' TIMED OUT after 151.531367ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #173 for future & fallible event' TIMED OUT after 151.551492ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #174 for future & fallible event' TIMED OUT after 151.552148ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #175 for future & fallible event' TIMED OUT after 151.552253ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #176 for future & fallible event' TIMED OUT after 151.553858ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #177 for future & fallible event' TIMED OUT after 151.553531ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #178 for future & fallible event' TIMED OUT after 151.553869ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #179 for future & fallible event' TIMED OUT after 151.553627ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #180 for future & fallible event' TIMED OUT after 151.566414ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #181 for future & fallible event' TIMED OUT after 151.564595ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #182 for future & fallible event' TIMED OUT after 151.564841ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #183 for future & fallible event' TIMED OUT after 151.576234ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #184 for future & fallible event' TIMED OUT after 151.576373ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #185 for future & fallible event' TIMED OUT after 151.592012ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #186 for future & fallible event' TIMED OUT after 151.591604ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #187 for future & fallible event' TIMED OUT after 151.591732ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #188 for future & fallible event' TIMED OUT after 151.590805ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #189 for future & fallible event' TIMED OUT after 151.591204ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #190 for future & fallible event' TIMED OUT after 151.590307ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #191 for future & fallible event' TIMED OUT after 151.590093ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #192 for future & fallible event' TIMED OUT after 151.590646ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #193 for future & fallible event' TIMED OUT after 151.610104ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #194 for future & fallible event' TIMED OUT after 151.610657ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #195 for future & fallible event' TIMED OUT after 151.6123ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #196 for future & fallible event' TIMED OUT after 151.615024ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #197 for future & fallible event' TIMED OUT after 151.616269ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #198 for future & fallible event' TIMED OUT after 151.615717ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #199 for future & fallible event' TIMED OUT after 151.615765ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #200 for future & fallible event' TIMED OUT after 151.632152ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #201 for future & fallible event' TIMED OUT after 151.632781ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #202 for future & fallible event' TIMED OUT after 151.65512ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #203 for future & fallible event' TIMED OUT after 151.655804ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #204 for future & fallible event' TIMED OUT after 151.655744ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #205 for future & fallible event' TIMED OUT after 151.658366ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #206 for future & fallible event' TIMED OUT after 151.657869ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #207 for future & fallible event' TIMED OUT after 151.65821ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #208 for future & fallible event' TIMED OUT after 151.658353ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #209 for future & fallible event' TIMED OUT after 151.658641ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #210 for future & fallible event' TIMED OUT after 151.671233ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #211 for future & fallible event' TIMED OUT after 151.672491ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #212 for future & fallible event' TIMED OUT after 151.672137ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #213 for future & fallible event' TIMED OUT after 151.671357ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #214 for future & fallible event' TIMED OUT after 151.671577ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #215 for future & fallible event' TIMED OUT after 151.671911ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #216 for future & fallible event' TIMED OUT after 151.671102ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #217 for future & fallible event' TIMED OUT after 151.670242ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #218 for future & fallible event' TIMED OUT after 151.67002ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #219 for future & fallible event' TIMED OUT after 151.670073ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #220 for future & fallible event' TIMED OUT after 151.669212ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #221 for future & fallible event' TIMED OUT after 151.668444ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #222 for future & fallible event' TIMED OUT after 151.66772ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #223 for future & fallible event' TIMED OUT after 151.668377ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #224 for future & fallible event' TIMED OUT after 151.668799ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #225 for future & fallible event' TIMED OUT after 151.668778ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #226 for future & fallible event' TIMED OUT after 151.668823ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #227 for future & fallible event' TIMED OUT after 151.6687ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #228 for future & fallible event' TIMED OUT after 151.669149ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #229 for future & fallible event' TIMED OUT after 151.668901ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #230 for future & fallible event' TIMED OUT after 151.668893ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #231 for future & fallible event' TIMED OUT after 151.668924ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #232 for future & fallible event' TIMED OUT after 151.668417ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #233 for future & fallible event' TIMED OUT after 151.668802ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #234 for future & fallible event' TIMED OUT after 151.667602ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #235 for future & fallible event' TIMED OUT after 151.667603ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #236 for future & fallible event' TIMED OUT after 151.666989ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #237 for future & fallible event' TIMED OUT after 151.666455ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #238 for future & fallible event' TIMED OUT after 151.665766ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #239 for future & fallible event' TIMED OUT after 151.666152ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #240 for future & fallible event' TIMED OUT after 151.666046ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #241 for future & fallible event' TIMED OUT after 151.665724ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #242 for future & fallible event' TIMED OUT after 151.666017ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #243 for future & fallible event' TIMED OUT after 151.665685ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #244 for future & fallible event' TIMED OUT after 151.664307ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #245 for future & fallible event' TIMED OUT after 151.663785ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #246 for future & fallible event' TIMED OUT after 151.663007ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #247 for future & fallible event' TIMED OUT after 151.662592ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #248 for future & fallible event' TIMED OUT after 151.66193ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #249 for future & fallible event' TIMED OUT after 151.661357ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #250 for future & fallible event' TIMED OUT after 151.660377ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #251 for future & fallible event' TIMED OUT after 151.660172ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #252 for future & fallible event' TIMED OUT after 151.660254ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #253 for future & fallible event' TIMED OUT after 151.660049ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #254 for future & fallible event' TIMED OUT after 151.659564ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #255 for future & fallible event' TIMED OUT after 151.659015ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #0 for future & fallible event' TIMED OUT after 151.658254ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #1 for future & fallible event' TIMED OUT after 151.657044ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #2 for future & fallible event' TIMED OUT after 151.655444ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #3 for future & fallible event' TIMED OUT after 151.647476ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #4 for future & fallible event' TIMED OUT after 151.645953ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #5 for future & fallible event' TIMED OUT after 151.655557ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #6 for future & fallible event' TIMED OUT after 151.655617ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #7 for future & fallible event' TIMED OUT after 151.654673ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #8 for future & fallible event' TIMED OUT after 151.654373ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #9 for future & fallible event' TIMED OUT after 151.655879ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #10 for future & fallible event' TIMED OUT after 151.655703ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #11 for future & fallible event' TIMED OUT after 151.654957ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #12 for future & fallible event' TIMED OUT after 151.654751ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #13 for future & fallible event' TIMED OUT after 151.653362ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #14 for future & fallible event' TIMED OUT after 151.652908ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #15 for future & fallible event' TIMED OUT after 151.652934ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #16 for future & fallible event' TIMED OUT after 151.652579ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #17 for future & fallible event' TIMED OUT after 151.652587ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #18 for future & fallible event' TIMED OUT after 151.652348ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #19 for future & fallible event' TIMED OUT after 151.651465ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #20 for future & fallible event' TIMED OUT after 151.650501ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #21 for future & fallible event' TIMED OUT after 151.649141ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #22 for future & fallible event' TIMED OUT after 151.649215ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #23 for future & fallible event' TIMED OUT after 151.648277ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #24 for future & fallible event' TIMED OUT after 151.648029ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #25 for future & fallible event' TIMED OUT after 151.647524ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #26 for future & fallible event' TIMED OUT after 151.64715ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #27 for future & fallible event' TIMED OUT after 151.646865ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #28 for future & fallible event' TIMED OUT after 151.646276ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #29 for future & fallible event' TIMED OUT after 151.645923ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #30 for future & fallible event' TIMED OUT after 151.646387ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #31 for future & fallible event' TIMED OUT after 151.645013ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #32 for future & fallible event' TIMED OUT after 151.643597ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #33 for future & fallible event' TIMED OUT after 151.643131ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #34 for future & fallible event' TIMED OUT after 151.642113ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #35 for future & fallible event' TIMED OUT after 151.64168ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #36 for future & fallible event' TIMED OUT after 151.640888ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #37 for future & fallible event' TIMED OUT after 151.638624ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #38 for future & fallible event' TIMED OUT after 151.637887ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #39 for future & fallible event' TIMED OUT after 151.635203ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #40 for future & fallible event' TIMED OUT after 151.634441ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #41 for future & fallible event' TIMED OUT after 151.634398ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #42 for future & fallible event' TIMED OUT after 151.633288ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #43 for future & fallible event' TIMED OUT after 151.632525ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #44 for future & fallible event' TIMED OUT after 151.631713ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #45 for future & fallible event' TIMED OUT after 151.631327ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #46 for future & fallible event' TIMED OUT after 151.630934ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #47 for future & fallible event' TIMED OUT after 151.630084ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #48 for future & fallible event' TIMED OUT after 151.629897ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #49 for future & fallible event' TIMED OUT after 151.627549ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #50 for future & fallible event' TIMED OUT after 151.627435ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #51 for future & fallible event' TIMED OUT after 151.627918ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #52 for future & fallible event' TIMED OUT after 151.627506ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #53 for future & fallible event' TIMED OUT after 151.627112ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #54 for future & fallible event' TIMED OUT after 151.627184ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #55 for future & fallible event' TIMED OUT after 151.627051ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #56 for future & fallible event' TIMED OUT after 151.626508ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #57 for future & fallible event' TIMED OUT after 151.626319ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #58 for future & fallible event' TIMED OUT after 151.626587ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #59 for future & fallible event' TIMED OUT after 151.626033ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #60 for future & fallible event' TIMED OUT after 151.626361ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #61 for future & fallible event' TIMED OUT after 151.62604ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #62 for future & fallible event' TIMED OUT after 151.62525ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #63 for future & fallible event' TIMED OUT after 151.624114ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #64 for future & fallible event' TIMED OUT after 151.623732ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #65 for future & fallible event' TIMED OUT after 151.623703ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #66 for future & fallible event' TIMED OUT after 151.625117ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #67 for future & fallible event' TIMED OUT after 151.624961ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #68 for future & fallible event' TIMED OUT after 151.625623ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #69 for future & fallible event' TIMED OUT after 151.625507ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #70 for future & fallible event' TIMED OUT after 151.625786ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #71 for future & fallible event' TIMED OUT after 151.625017ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #72 for future & fallible event' TIMED OUT after 151.62491ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #73 for future & fallible event' TIMED OUT after 151.624109ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #74 for future & fallible event' TIMED OUT after 151.623818ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #75 for future & fallible event' TIMED OUT after 151.623724ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #76 for future & fallible event' TIMED OUT after 151.623498ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #77 for future & fallible event' TIMED OUT after 151.62273ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #78 for future & fallible event' TIMED OUT after 151.622446ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #79 for future & fallible event' TIMED OUT after 151.621682ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #80 for future & fallible event' TIMED OUT after 151.620943ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #81 for future & fallible event' TIMED OUT after 151.620742ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #82 for future & fallible event' TIMED OUT after 151.619788ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #83 for future & fallible event' TIMED OUT after 151.61885ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #84 for future & fallible event' TIMED OUT after 151.618743ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #85 for future & fallible event' TIMED OUT after 151.618023ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #86 for future & fallible event' TIMED OUT after 151.616955ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #87 for future & fallible event' TIMED OUT after 151.616087ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #88 for future & fallible event' TIMED OUT after 151.596383ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #89 for future & fallible event' TIMED OUT after 151.596758ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #90 for future & fallible event' TIMED OUT after 151.596657ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #91 for future & fallible event' TIMED OUT after 151.595385ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #92 for future & fallible event' TIMED OUT after 151.594565ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #93 for future & fallible event' TIMED OUT after 151.594479ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #94 for future & fallible event' TIMED OUT after 151.622317ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #95 for future & fallible event' TIMED OUT after 151.622293ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #96 for future & fallible event' TIMED OUT after 151.622016ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #97 for future & fallible event' TIMED OUT after 151.607495ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #98 for future & fallible event' TIMED OUT after 151.606916ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #99 for future & fallible event' TIMED OUT after 151.606933ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #100 for future & fallible event' TIMED OUT after 151.606177ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #101 for future & fallible event' TIMED OUT after 151.605919ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #102 for future & fallible event' TIMED OUT after 151.605203ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #103 for future & fallible event' TIMED OUT after 151.617704ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #104 for future & fallible event' TIMED OUT after 151.6171ms 2023-03-06T16:34:46.566Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #105 for future & fallible event' TIMED OUT after 151.616305ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #106 for future & fallible event' TIMED OUT after 151.615511ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #107 for future & fallible event' TIMED OUT after 151.614739ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #108 for future & fallible event' TIMED OUT after 151.615078ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #109 for future & fallible event' TIMED OUT after 151.613582ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #110 for future & fallible event' TIMED OUT after 151.61301ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #111 for future & fallible event' TIMED OUT after 151.612733ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #112 for future & fallible event' TIMED OUT after 151.612451ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #113 for future & fallible event' TIMED OUT after 151.612303ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #114 for future & fallible event' TIMED OUT after 151.611378ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #115 for future & fallible event' TIMED OUT after 151.610689ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #116 for future & fallible event' TIMED OUT after 151.61004ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #117 for future & fallible event' TIMED OUT after 151.609457ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #118 for future & fallible event' TIMED OUT after 151.608733ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #119 for future & fallible event' TIMED OUT after 151.608283ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #120 for future & fallible event' TIMED OUT after 151.608016ms 2023-03-06T16:34:46.567Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #121 for future & fallible event' TIMED OUT after 151.607475ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #122 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.25447ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #123 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.272026ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #124 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.27522ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #125 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.277885ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #126 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.28025ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #127 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.282297ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #128 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.283859ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #129 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.285638ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #130 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.287311ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #131 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.289176ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #132 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.290762ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #133 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.292778ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #134 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.294129ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #135 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.295755ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #136 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.297496ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #137 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.299797ms 2023-03-06T16:34:46.716Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #138 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.301673ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #139 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.536439ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #140 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.555368ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #141 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.55856ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #142 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.5608ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #143 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.562645ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #144 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.564459ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #145 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.566198ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #146 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.567392ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #147 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.569331ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #148 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.571185ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #149 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.573896ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #150 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.577363ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #151 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.580935ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #152 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.583439ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #153 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.587286ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #154 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.591145ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #155 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.594302ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #156 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.597413ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #157 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.600927ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #158 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.603723ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #159 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.606585ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #160 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.609235ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #161 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.611961ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #162 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.614972ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #163 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.617762ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #164 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.620682ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #165 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.627687ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #166 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.63019ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #167 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.634311ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #168 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.638325ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #169 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.642312ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #170 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.64544ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #171 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.648444ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #172 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.652227ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #173 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.655644ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #174 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.658483ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #175 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.662354ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #176 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.665911ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #177 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.66955ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #178 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.673152ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #179 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.677361ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #180 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.680945ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #181 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.684006ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #182 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.68726ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #183 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.691405ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #184 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.695219ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #185 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.699231ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #186 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.702954ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #187 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.706816ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #188 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.711055ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #189 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.714321ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #190 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.71804ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #191 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.721922ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #192 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.726701ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #193 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.730003ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #194 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.733176ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #195 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.737664ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #196 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.741818ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #197 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.746761ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #198 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.750289ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #199 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.754119ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #200 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.758941ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #201 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.763217ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #202 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.766901ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #203 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.770719ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #204 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.774409ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #205 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.777565ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #206 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.781495ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #207 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.786105ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #208 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.789995ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #209 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.794564ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #210 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.799273ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #211 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.802358ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #212 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.806436ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #213 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.811148ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #214 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.815171ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #215 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.819622ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #216 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.822723ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #217 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.826422ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #218 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.830388ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #219 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.834719ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #220 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.837962ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #221 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.84188ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #222 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.845919ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #223 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.850016ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #224 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.85455ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #225 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.859851ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #226 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.863793ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #227 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.868305ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #228 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.873054ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #229 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.877057ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #230 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.880864ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #231 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.884862ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #232 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.889243ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #233 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.893266ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #234 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.897534ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #235 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.901234ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #236 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.904836ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #237 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.908306ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #238 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.912004ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #239 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.915218ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #240 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.919004ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #241 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.922502ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #242 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.925853ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #243 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.929619ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #244 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.933436ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #245 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.937ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #246 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.940285ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #247 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.945083ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #248 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.949542ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #249 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.953097ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #250 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.956981ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #251 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.960851ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #252 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.964537ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #253 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.968079ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #254 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.971007ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #255 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.975306ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #0 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.979035ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #1 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.982923ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #2 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.98712ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #3 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.990234ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #4 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.994314ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #5 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.998832ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #6 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.003045ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #7 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.006695ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #8 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.010017ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #9 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.012947ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #10 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.016989ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #11 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.02051ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #12 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.024036ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #13 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.027541ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #14 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.031738ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #15 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.034867ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #16 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.03849ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #17 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.04176ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #18 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.045481ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #19 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.048955ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #20 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.052422ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #21 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.055838ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #22 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.059018ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #23 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.06312ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #24 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.066724ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #25 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.070478ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #26 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.074031ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #27 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.077663ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #28 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.081137ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #29 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.084324ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #30 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.088075ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #31 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.091619ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #32 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.094929ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #33 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.098995ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #34 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.103093ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #35 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.106726ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #36 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.110071ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #37 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.113516ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #38 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.117653ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #39 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.120849ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #40 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.124488ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #41 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.130643ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #42 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.134583ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #43 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.138028ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #44 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.141131ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #45 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.144598ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #46 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.147997ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #47 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.151783ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #48 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.155321ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #49 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.15884ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #50 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.16199ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #51 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.165016ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #52 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.168594ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #53 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.172069ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #54 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.175794ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #55 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.179551ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #56 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.183331ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #57 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.186413ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #58 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.189757ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #59 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.194182ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #60 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.198466ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #61 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.201965ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #62 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.205889ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #63 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.208925ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #64 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.212542ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #65 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.215954ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #66 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.220122ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #67 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.223702ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #68 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.226712ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #69 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.230318ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #70 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.234512ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #71 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.238037ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #72 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.241528ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #73 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.245127ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #74 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.248595ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #75 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.252139ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #76 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.25549ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #77 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.25899ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #78 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.262577ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #79 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.266074ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #80 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.269264ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #81 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.272711ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #82 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.276304ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #83 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.279037ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #84 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.282594ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #85 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.286261ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #86 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.289279ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #87 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.293319ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #88 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.29617ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #89 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.29964ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #90 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.303059ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #91 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.306648ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #92 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.309991ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #93 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.322008ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #94 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.325745ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #95 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.330167ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #96 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.333744ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #97 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.336628ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #98 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.340088ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #99 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.343692ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #100 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.347142ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #101 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.350521ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #102 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.353819ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #103 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.357109ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #104 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.35982ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #105 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.363115ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #106 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.366468ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #107 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.369963ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #108 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.373468ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #109 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.376606ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #110 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.379814ms 2023-03-06T16:34:46.719Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #111 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.383285ms 2023-03-06T16:34:46.720Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #112 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.386962ms 2023-03-06T16:34:46.720Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #113 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.391418ms 2023-03-06T16:34:46.720Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #114 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.395215ms 2023-03-06T16:34:46.720Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #115 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.398607ms 2023-03-06T16:34:46.720Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #116 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.402036ms 2023-03-06T16:34:46.720Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #117 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.405997ms 2023-03-06T16:34:46.720Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #118 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.409888ms 2023-03-06T16:34:46.720Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #119 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.41348ms 2023-03-06T16:34:46.720Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #120 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.416987ms 2023-03-06T16:34:46.720Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #121 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.420861ms 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #122 for future & fallible event' TIMED OUT after 151.696168ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #122 for future & fallible event' ended after running for 606.574684ms -- stats: | ok: 2 events; avg 101.573408ms - 3.29720/sec | time out: 2 events; avg 150.957316ms - 3.29720/sec | failed: 2 events; avg 50.69913ms - 3.29720/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #123 for future & fallible event' TIMED OUT after 151.717343ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #123 for future & fallible event' ended after running for 606.578161ms -- stats: | ok: 2 events; avg 101.573132ms - 3.29718/sec | time out: 2 events; avg 150.990844ms - 3.29718/sec | failed: 2 events; avg 50.717264ms - 3.29718/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #124 for future & fallible event' TIMED OUT after 151.719405ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #124 for future & fallible event' ended after running for 606.578604ms -- stats: | ok: 2 events; avg 101.570874ms - 3.29718/sec | time out: 2 events; avg 150.992095ms - 3.29718/sec | failed: 2 events; avg 50.720349ms - 3.29718/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #125 for future & fallible event' TIMED OUT after 151.741653ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #125 for future & fallible event' ended after running for 606.600207ms -- stats: | ok: 2 events; avg 101.568356ms - 3.29706/sec | time out: 2 events; avg 151.002914ms - 3.29706/sec | failed: 2 events; avg 50.722852ms - 3.29706/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #126 for future & fallible event' TIMED OUT after 151.74348ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #126 for future & fallible event' ended after running for 606.601159ms -- stats: | ok: 2 events; avg 101.56633ms - 3.29706/sec | time out: 2 events; avg 151.003867ms - 3.29706/sec | failed: 2 events; avg 50.725289ms - 3.29706/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #127 for future & fallible event' TIMED OUT after 151.745515ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #127 for future & fallible event' ended after running for 606.602271ms -- stats: | ok: 2 events; avg 101.564065ms - 3.29705/sec | time out: 2 events; avg 151.004612ms - 3.29705/sec | failed: 2 events; avg 50.727244ms - 3.29705/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #128 for future & fallible event' TIMED OUT after 151.74766ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #128 for future & fallible event' ended after running for 606.603264ms -- stats: | ok: 2 events; avg 101.561882ms - 3.29705/sec | time out: 2 events; avg 151.005268ms - 3.29705/sec | failed: 2 events; avg 50.728973ms - 3.29705/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #129 for future & fallible event' TIMED OUT after 151.749866ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #129 for future & fallible event' ended after running for 606.60358ms -- stats: | ok: 2 events; avg 101.559833ms - 3.29705/sec | time out: 2 events; avg 151.006132ms - 3.29705/sec | failed: 2 events; avg 50.730996ms - 3.29705/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #130 for future & fallible event' TIMED OUT after 151.75299ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #130 for future & fallible event' ended after running for 606.606625ms -- stats: | ok: 2 events; avg 101.557314ms - 3.29703/sec | time out: 2 events; avg 151.007414ms - 3.29703/sec | failed: 2 events; avg 50.732754ms - 3.29703/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #131 for future & fallible event' TIMED OUT after 151.75809ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #131 for future & fallible event' ended after running for 606.60844ms -- stats: | ok: 2 events; avg 101.555072ms - 3.29702/sec | time out: 2 events; avg 151.009649ms - 3.29702/sec | failed: 2 events; avg 50.734621ms - 3.29702/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #132 for future & fallible event' TIMED OUT after 151.75999ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #132 for future & fallible event' ended after running for 606.60914ms -- stats: | ok: 2 events; avg 101.552606ms - 3.29702/sec | time out: 2 events; avg 151.010245ms - 3.29702/sec | failed: 2 events; avg 50.736107ms - 3.29702/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #133 for future & fallible event' TIMED OUT after 151.761514ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #133 for future & fallible event' ended after running for 606.609052ms -- stats: | ok: 2 events; avg 101.550296ms - 3.29702/sec | time out: 2 events; avg 151.010901ms - 3.29702/sec | failed: 2 events; avg 50.738111ms - 3.29702/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #134 for future & fallible event' TIMED OUT after 151.76474ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #134 for future & fallible event' ended after running for 606.611712ms -- stats: | ok: 2 events; avg 101.547882ms - 3.29700/sec | time out: 2 events; avg 151.01245ms - 3.29700/sec | failed: 2 events; avg 50.739676ms - 3.29700/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #135 for future & fallible event' TIMED OUT after 151.769467ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #135 for future & fallible event' ended after running for 606.613485ms -- stats: | ok: 2 events; avg 101.545736ms - 3.29699/sec | time out: 2 events; avg 151.014671ms - 3.29699/sec | failed: 2 events; avg 50.741315ms - 3.29699/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #136 for future & fallible event' TIMED OUT after 151.772528ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #136 for future & fallible event' ended after running for 606.616008ms -- stats: | ok: 2 events; avg 101.542905ms - 3.29698/sec | time out: 2 events; avg 151.016012ms - 3.29698/sec | failed: 2 events; avg 50.743021ms - 3.29698/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #137 for future & fallible event' TIMED OUT after 151.778953ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #137 for future & fallible event' ended after running for 606.619953ms -- stats: | ok: 2 events; avg 101.540595ms - 3.29696/sec | time out: 2 events; avg 151.019186ms - 3.29696/sec | failed: 2 events; avg 50.74501ms - 3.29696/sec 2023-03-06T16:34:46.868Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #138 for future & fallible event' TIMED OUT after 151.782708ms 2023-03-06T16:34:46.868Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #138 for future & fallible event' ended after running for 606.623744ms -- stats: | ok: 2 events; avg 101.537921ms - 3.29694/sec | time out: 2 events; avg 151.020736ms - 3.29694/sec | failed: 2 events; avg 50.746858ms - 3.29694/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #139 for future & fallible event' TIMED OUT after 150.508649ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #139 for future & fallible event' ended after running for 607.699003ms -- stats: | ok: 2 events; avg 101.434208ms - 3.29110/sec | time out: 2 events; avg 151.025429ms - 3.29110/sec | failed: 2 events; avg 51.365122ms - 3.29110/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #140 for future & fallible event' TIMED OUT after 150.513313ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #140 for future & fallible event' ended after running for 607.701597ms -- stats: | ok: 2 events; avg 101.430655ms - 3.29109/sec | time out: 2 events; avg 151.036799ms - 3.29109/sec | failed: 2 events; avg 51.375564ms - 3.29109/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #141 for future & fallible event' TIMED OUT after 150.51689ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #141 for future & fallible event' ended after running for 607.703693ms -- stats: | ok: 2 events; avg 101.428084ms - 3.29108/sec | time out: 2 events; avg 151.039258ms - 3.29108/sec | failed: 2 events; avg 51.378459ms - 3.29108/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #142 for future & fallible event' TIMED OUT after 150.521455ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #142 for future & fallible event' ended after running for 607.707177ms -- stats: | ok: 2 events; avg 101.42535ms - 3.29106/sec | time out: 2 events; avg 151.041657ms - 3.29106/sec | failed: 2 events; avg 51.380523ms - 3.29106/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #143 for future & fallible event' TIMED OUT after 150.52672ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #143 for future & fallible event' ended after running for 607.709266ms -- stats: | ok: 2 events; avg 101.422891ms - 3.29105/sec | time out: 2 events; avg 151.044279ms - 3.29105/sec | failed: 2 events; avg 51.381849ms - 3.29105/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #144 for future & fallible event' TIMED OUT after 150.530293ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #144 for future & fallible event' ended after running for 607.711959ms -- stats: | ok: 2 events; avg 101.420864ms - 3.29103/sec | time out: 2 events; avg 151.045874ms - 3.29103/sec | failed: 2 events; avg 51.383525ms - 3.29103/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #145 for future & fallible event' TIMED OUT after 150.53526ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #145 for future & fallible event' ended after running for 607.714505ms -- stats: | ok: 2 events; avg 101.418547ms - 3.29102/sec | time out: 2 events; avg 151.047915ms - 3.29102/sec | failed: 2 events; avg 51.385477ms - 3.29102/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #146 for future & fallible event' TIMED OUT after 150.538987ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #146 for future & fallible event' ended after running for 607.717027ms -- stats: | ok: 2 events; avg 101.416156ms - 3.29101/sec | time out: 2 events; avg 151.049584ms - 3.29101/sec | failed: 2 events; avg 51.386956ms - 3.29101/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #147 for future & fallible event' TIMED OUT after 150.542681ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #147 for future & fallible event' ended after running for 607.719376ms -- stats: | ok: 2 events; avg 101.413786ms - 3.29099/sec | time out: 2 events; avg 151.051193ms - 3.29099/sec | failed: 2 events; avg 51.38877ms - 3.29099/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #148 for future & fallible event' TIMED OUT after 150.546707ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #148 for future & fallible event' ended after running for 607.722619ms -- stats: | ok: 2 events; avg 101.41132ms - 3.29098/sec | time out: 2 events; avg 151.053309ms - 3.29098/sec | failed: 2 events; avg 51.390633ms - 3.29098/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #149 for future & fallible event' TIMED OUT after 150.550944ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #149 for future & fallible event' ended after running for 607.725935ms -- stats: | ok: 2 events; avg 101.408757ms - 3.29096/sec | time out: 2 events; avg 151.055291ms - 3.29096/sec | failed: 2 events; avg 51.392905ms - 3.29096/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #150 for future & fallible event' TIMED OUT after 150.552503ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #150 for future & fallible event' ended after running for 607.729136ms -- stats: | ok: 2 events; avg 101.406142ms - 3.29094/sec | time out: 2 events; avg 151.056021ms - 3.29094/sec | failed: 2 events; avg 51.395506ms - 3.29094/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #151 for future & fallible event' TIMED OUT after 150.556586ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #151 for future & fallible event' ended after running for 607.731768ms -- stats: | ok: 2 events; avg 101.403967ms - 3.29093/sec | time out: 2 events; avg 151.057884ms - 3.29093/sec | failed: 2 events; avg 51.398285ms - 3.29093/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #152 for future & fallible event' TIMED OUT after 150.557502ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #152 for future & fallible event' ended after running for 607.734165ms -- stats: | ok: 2 events; avg 101.401642ms - 3.29091/sec | time out: 2 events; avg 151.058137ms - 3.29091/sec | failed: 2 events; avg 51.400647ms - 3.29091/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #153 for future & fallible event' TIMED OUT after 150.560601ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #153 for future & fallible event' ended after running for 607.737487ms -- stats: | ok: 2 events; avg 101.399511ms - 3.29089/sec | time out: 2 events; avg 151.059672ms - 3.29089/sec | failed: 2 events; avg 51.403463ms - 3.29089/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #154 for future & fallible event' TIMED OUT after 150.563238ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #154 for future & fallible event' ended after running for 607.740193ms -- stats: | ok: 2 events; avg 101.397157ms - 3.29088/sec | time out: 2 events; avg 151.060954ms - 3.29088/sec | failed: 2 events; avg 51.406302ms - 3.29088/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #155 for future & fallible event' TIMED OUT after 150.565691ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #155 for future & fallible event' ended after running for 607.743138ms -- stats: | ok: 2 events; avg 101.39282ms - 3.29086/sec | time out: 2 events; avg 151.061997ms - 3.29086/sec | failed: 2 events; avg 51.408757ms - 3.29086/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #156 for future & fallible event' TIMED OUT after 150.569786ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #156 for future & fallible event' ended after running for 607.723053ms -- stats: | ok: 2 events; avg 101.380467ms - 3.29097/sec | time out: 2 events; avg 151.063889ms - 3.29097/sec | failed: 2 events; avg 51.411234ms - 3.29097/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #157 for future & fallible event' TIMED OUT after 150.572292ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #157 for future & fallible event' ended after running for 607.725538ms -- stats: | ok: 2 events; avg 101.37815ms - 3.29096/sec | time out: 2 events; avg 151.064575ms - 3.29096/sec | failed: 2 events; avg 51.41386ms - 3.29096/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #158 for future & fallible event' TIMED OUT after 150.57596ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #158 for future & fallible event' ended after running for 607.728282ms -- stats: | ok: 2 events; avg 101.375669ms - 3.29094/sec | time out: 2 events; avg 151.065171ms - 3.29094/sec | failed: 2 events; avg 51.416337ms - 3.29094/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #159 for future & fallible event' TIMED OUT after 150.57878ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #159 for future & fallible event' ended after running for 607.731329ms -- stats: | ok: 2 events; avg 101.373427ms - 3.29093/sec | time out: 2 events; avg 151.066482ms - 3.29093/sec | failed: 2 events; avg 51.41972ms - 3.29093/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #160 for future & fallible event' TIMED OUT after 150.583834ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #160 for future & fallible event' ended after running for 607.73525ms -- stats: | ok: 2 events; avg 101.370208ms - 3.29091/sec | time out: 2 events; avg 151.068032ms - 3.29091/sec | failed: 2 events; avg 51.422007ms - 3.29091/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #161 for future & fallible event' TIMED OUT after 150.586345ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #161 for future & fallible event' ended after running for 607.736854ms -- stats: | ok: 2 events; avg 101.367846ms - 3.29090/sec | time out: 2 events; avg 151.068583ms - 3.29090/sec | failed: 2 events; avg 51.425517ms - 3.29090/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #162 for future & fallible event' TIMED OUT after 150.589801ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #162 for future & fallible event' ended after running for 607.739545ms -- stats: | ok: 2 events; avg 101.358473ms - 3.29088/sec | time out: 2 events; avg 151.069358ms - 3.29088/sec | failed: 2 events; avg 51.428497ms - 3.29088/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #163 for future & fallible event' TIMED OUT after 150.592964ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #163 for future & fallible event' ended after running for 607.728356ms -- stats: | ok: 2 events; avg 101.356186ms - 3.29094/sec | time out: 2 events; avg 151.070178ms - 3.29094/sec | failed: 2 events; avg 51.43163ms - 3.29094/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #164 for future & fallible event' TIMED OUT after 150.59284ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #164 for future & fallible event' ended after running for 607.731164ms -- stats: | ok: 2 events; avg 101.353779ms - 3.29093/sec | time out: 2 events; avg 151.06912ms - 3.29093/sec | failed: 2 events; avg 51.434562ms - 3.29093/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #165 for future & fallible event' TIMED OUT after 150.595092ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #165 for future & fallible event' ended after running for 607.734093ms -- stats: | ok: 2 events; avg 101.351731ms - 3.29091/sec | time out: 2 events; avg 151.069522ms - 3.29091/sec | failed: 2 events; avg 51.439747ms - 3.29091/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #166 for future & fallible event' TIMED OUT after 150.598152ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #166 for future & fallible event' ended after running for 607.737503ms -- stats: | ok: 2 events; avg 101.349376ms - 3.29089/sec | time out: 2 events; avg 151.070148ms - 3.29089/sec | failed: 2 events; avg 51.44231ms - 3.29089/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #167 for future & fallible event' TIMED OUT after 150.599766ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #167 for future & fallible event' ended after running for 607.741134ms -- stats: | ok: 2 events; avg 101.347283ms - 3.29087/sec | time out: 2 events; avg 151.069969ms - 3.29087/sec | failed: 2 events; avg 51.446021ms - 3.29087/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #168 for future & fallible event' TIMED OUT after 150.603061ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #168 for future & fallible event' ended after running for 607.74401ms -- stats: | ok: 2 events; avg 101.344913ms - 3.29086/sec | time out: 2 events; avg 151.070595ms - 3.29086/sec | failed: 2 events; avg 51.449783ms - 3.29086/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #169 for future & fallible event' TIMED OUT after 150.605027ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #169 for future & fallible event' ended after running for 607.746601ms -- stats: | ok: 2 events; avg 101.342455ms - 3.29085/sec | time out: 2 events; avg 151.070684ms - 3.29085/sec | failed: 2 events; avg 51.453479ms - 3.29085/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #170 for future & fallible event' TIMED OUT after 150.606659ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #170 for future & fallible event' ended after running for 607.747736ms -- stats: | ok: 2 events; avg 101.339996ms - 3.29084/sec | time out: 2 events; avg 151.069447ms - 3.29084/sec | failed: 2 events; avg 51.456653ms - 3.29084/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #171 for future & fallible event' TIMED OUT after 150.608463ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #171 for future & fallible event' ended after running for 607.750931ms -- stats: | ok: 2 events; avg 101.336658ms - 3.29082/sec | time out: 2 events; avg 151.069522ms - 3.29082/sec | failed: 2 events; avg 51.461212ms - 3.29082/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #172 for future & fallible event' TIMED OUT after 150.611925ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #172 for future & fallible event' ended after running for 607.753632ms -- stats: | ok: 2 events; avg 101.333581ms - 3.29081/sec | time out: 2 events; avg 151.071638ms - 3.29081/sec | failed: 2 events; avg 51.464677ms - 3.29081/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #173 for future & fallible event' TIMED OUT after 150.614742ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #173 for future & fallible event' ended after running for 607.758046ms -- stats: | ok: 2 events; avg 101.320758ms - 3.29078/sec | time out: 2 events; avg 151.083112ms - 3.29078/sec | failed: 2 events; avg 51.467754ms - 3.29078/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #174 for future & fallible event' TIMED OUT after 150.617917ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #174 for future & fallible event' ended after running for 607.761086ms -- stats: | ok: 2 events; avg 101.317532ms - 3.29077/sec | time out: 2 events; avg 151.085034ms - 3.29077/sec | failed: 2 events; avg 51.470816ms - 3.29077/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #175 for future & fallible event' TIMED OUT after 150.619904ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #175 for future & fallible event' ended after running for 607.764338ms -- stats: | ok: 2 events; avg 101.31333ms - 3.29075/sec | time out: 2 events; avg 151.086092ms - 3.29075/sec | failed: 2 events; avg 51.474176ms - 3.29075/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #176 for future & fallible event' TIMED OUT after 150.623699ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #176 for future & fallible event' ended after running for 607.767376ms -- stats: | ok: 2 events; avg 101.310134ms - 3.29073/sec | time out: 2 events; avg 151.088774ms - 3.29073/sec | failed: 2 events; avg 51.477715ms - 3.29073/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #177 for future & fallible event' TIMED OUT after 150.625266ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #177 for future & fallible event' ended after running for 607.769353ms -- stats: | ok: 2 events; avg 101.306438ms - 3.29072/sec | time out: 2 events; avg 151.0894ms - 3.29072/sec | failed: 2 events; avg 51.481068ms - 3.29072/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #178 for future & fallible event' TIMED OUT after 150.626248ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #178 for future & fallible event' ended after running for 607.772315ms -- stats: | ok: 2 events; avg 101.303264ms - 3.29071/sec | time out: 2 events; avg 151.090056ms - 3.29071/sec | failed: 2 events; avg 51.484518ms - 3.29071/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #179 for future & fallible event' TIMED OUT after 150.629838ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #179 for future & fallible event' ended after running for 607.774859ms -- stats: | ok: 2 events; avg 101.293638ms - 3.29069/sec | time out: 2 events; avg 151.091725ms - 3.29069/sec | failed: 2 events; avg 51.488355ms - 3.29069/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #180 for future & fallible event' TIMED OUT after 150.631992ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #180 for future & fallible event' ended after running for 607.778427ms -- stats: | ok: 2 events; avg 101.290889ms - 3.29067/sec | time out: 2 events; avg 151.099205ms - 3.29067/sec | failed: 2 events; avg 51.491812ms - 3.29067/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #181 for future & fallible event' TIMED OUT after 150.635708ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #181 for future & fallible event' ended after running for 607.78165ms -- stats: | ok: 2 events; avg 101.287663ms - 3.29066/sec | time out: 2 events; avg 151.100159ms - 3.29066/sec | failed: 2 events; avg 51.495031ms - 3.29066/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #182 for future & fallible event' TIMED OUT after 150.637209ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #182 for future & fallible event' ended after running for 607.783652ms -- stats: | ok: 2 events; avg 101.273403ms - 3.29064/sec | time out: 2 events; avg 151.101023ms - 3.29064/sec | failed: 2 events; avg 51.498763ms - 3.29064/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #183 for future & fallible event' TIMED OUT after 150.638141ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #183 for future & fallible event' ended after running for 607.783967ms -- stats: | ok: 2 events; avg 101.270527ms - 3.29064/sec | time out: 2 events; avg 151.107192ms - 3.29064/sec | failed: 2 events; avg 51.506139ms - 3.29064/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #184 for future & fallible event' TIMED OUT after 150.639105ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #184 for future & fallible event' ended after running for 607.786312ms -- stats: | ok: 2 events; avg 101.26783ms - 3.29063/sec | time out: 2 events; avg 151.107728ms - 3.29063/sec | failed: 2 events; avg 51.510394ms - 3.29063/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #185 for future & fallible event' TIMED OUT after 150.639844ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #185 for future & fallible event' ended after running for 607.788078ms -- stats: | ok: 2 events; avg 101.256669ms - 3.29062/sec | time out: 2 events; avg 151.115924ms - 3.29062/sec | failed: 2 events; avg 51.514015ms - 3.29062/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #186 for future & fallible event' TIMED OUT after 150.640488ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #186 for future & fallible event' ended after running for 607.790257ms -- stats: | ok: 2 events; avg 101.253837ms - 3.29061/sec | time out: 2 events; avg 151.116043ms - 3.29061/sec | failed: 2 events; avg 51.517636ms - 3.29061/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #187 for future & fallible event' TIMED OUT after 150.641112ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #187 for future & fallible event' ended after running for 607.792154ms -- stats: | ok: 2 events; avg 101.25085ms - 3.29060/sec | time out: 2 events; avg 151.116431ms - 3.29060/sec | failed: 2 events; avg 51.521268ms - 3.29060/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #188 for future & fallible event' TIMED OUT after 150.642588ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #188 for future & fallible event' ended after running for 607.794819ms -- stats: | ok: 2 events; avg 101.247802ms - 3.29058/sec | time out: 2 events; avg 151.116699ms - 3.29058/sec | failed: 2 events; avg 51.525094ms - 3.29058/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #189 for future & fallible event' TIMED OUT after 150.645301ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #189 for future & fallible event' ended after running for 607.797936ms -- stats: | ok: 2 events; avg 101.245165ms - 3.29057/sec | time out: 2 events; avg 151.118249ms - 3.29057/sec | failed: 2 events; avg 51.528491ms - 3.29057/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #190 for future & fallible event' TIMED OUT after 150.646134ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #190 for future & fallible event' ended after running for 607.800159ms -- stats: | ok: 2 events; avg 101.242244ms - 3.29056/sec | time out: 2 events; avg 151.118219ms - 3.29056/sec | failed: 2 events; avg 51.531978ms - 3.29056/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #191 for future & fallible event' TIMED OUT after 150.646038ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #191 for future & fallible event' ended after running for 607.802323ms -- stats: | ok: 2 events; avg 101.22931ms - 3.29054/sec | time out: 2 events; avg 151.11807ms - 3.29054/sec | failed: 2 events; avg 51.535673ms - 3.29054/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #192 for future & fallible event' TIMED OUT after 150.647068ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #192 for future & fallible event' ended after running for 607.784838ms -- stats: | ok: 2 events; avg 101.216644ms - 3.29064/sec | time out: 2 events; avg 151.11886ms - 3.29064/sec | failed: 2 events; avg 51.540032ms - 3.29064/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #193 for future & fallible event' TIMED OUT after 150.648379ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #193 for future & fallible event' ended after running for 607.786556ms -- stats: | ok: 2 events; avg 101.213008ms - 3.29063/sec | time out: 2 events; avg 151.129246ms - 3.29063/sec | failed: 2 events; avg 51.543221ms - 3.29063/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #194 for future & fallible event' TIMED OUT after 150.648587ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #194 for future & fallible event' ended after running for 607.789007ms -- stats: | ok: 2 events; avg 101.209462ms - 3.29062/sec | time out: 2 events; avg 151.129633ms - 3.29062/sec | failed: 2 events; avg 51.546596ms - 3.29062/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #195 for future & fallible event' TIMED OUT after 150.649612ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #195 for future & fallible event' ended after running for 607.790491ms -- stats: | ok: 2 events; avg 101.20444ms - 3.29061/sec | time out: 2 events; avg 151.130959ms - 3.29061/sec | failed: 2 events; avg 51.550798ms - 3.29061/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #196 for future & fallible event' TIMED OUT after 150.649676ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #196 for future & fallible event' ended after running for 607.792271ms -- stats: | ok: 2 events; avg 101.200558ms - 3.29060/sec | time out: 2 events; avg 151.132345ms - 3.29060/sec | failed: 2 events; avg 51.554557ms - 3.29060/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #197 for future & fallible event' TIMED OUT after 150.65506ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #197 for future & fallible event' ended after running for 607.798576ms -- stats: | ok: 2 events; avg 101.197429ms - 3.29056/sec | time out: 2 events; avg 151.135668ms - 3.29056/sec | failed: 2 events; avg 51.558673ms - 3.29056/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #198 for future & fallible event' TIMED OUT after 150.657366ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #198 for future & fallible event' ended after running for 607.801348ms -- stats: | ok: 2 events; avg 101.194158ms - 3.29055/sec | time out: 2 events; avg 151.136532ms - 3.29055/sec | failed: 2 events; avg 51.562246ms - 3.29055/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #199 for future & fallible event' TIMED OUT after 150.659251ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #199 for future & fallible event' ended after running for 607.804196ms -- stats: | ok: 2 events; avg 101.190448ms - 3.29053/sec | time out: 2 events; avg 151.137501ms - 3.29053/sec | failed: 2 events; avg 51.566299ms - 3.29053/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #200 for future & fallible event' TIMED OUT after 150.657939ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #200 for future & fallible event' ended after running for 607.807204ms -- stats: | ok: 2 events; avg 101.179838ms - 3.29052/sec | time out: 2 events; avg 151.145041ms - 3.29052/sec | failed: 2 events; avg 51.570583ms - 3.29052/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #201 for future & fallible event' TIMED OUT after 150.657931ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #201 for future & fallible event' ended after running for 607.807787ms -- stats: | ok: 2 events; avg 101.164877ms - 3.29051/sec | time out: 2 events; avg 151.145369ms - 3.29051/sec | failed: 2 events; avg 51.574528ms - 3.29051/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #202 for future & fallible event' TIMED OUT after 150.657397ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #202 for future & fallible event' ended after running for 607.808561ms -- stats: | ok: 2 events; avg 101.160862ms - 3.29051/sec | time out: 2 events; avg 151.156247ms - 3.29051/sec | failed: 2 events; avg 51.578131ms - 3.29051/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #203 for future & fallible event' TIMED OUT after 150.656929ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #203 for future & fallible event' ended after running for 607.808922ms -- stats: | ok: 2 events; avg 101.157546ms - 3.29051/sec | time out: 2 events; avg 151.156366ms - 3.29051/sec | failed: 2 events; avg 51.583078ms - 3.29051/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #204 for future & fallible event' TIMED OUT after 150.65706ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #204 for future & fallible event' ended after running for 607.809601ms -- stats: | ok: 2 events; avg 101.153091ms - 3.29050/sec | time out: 2 events; avg 151.156396ms - 3.29050/sec | failed: 2 events; avg 51.586781ms - 3.29050/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #205 for future & fallible event' TIMED OUT after 150.656493ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #205 for future & fallible event' ended after running for 607.810004ms -- stats: | ok: 2 events; avg 101.149827ms - 3.29050/sec | time out: 2 events; avg 151.157439ms - 3.29050/sec | failed: 2 events; avg 51.590391ms - 3.29050/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #206 for future & fallible event' TIMED OUT after 150.655403ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #206 for future & fallible event' ended after running for 607.810573ms -- stats: | ok: 2 events; avg 101.146519ms - 3.29050/sec | time out: 2 events; avg 151.156634ms - 3.29050/sec | failed: 2 events; avg 51.593877ms - 3.29050/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #207 for future & fallible event' TIMED OUT after 150.654543ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #207 for future & fallible event' ended after running for 607.810922ms -- stats: | ok: 2 events; avg 101.143703ms - 3.29050/sec | time out: 2 events; avg 151.156366ms - 3.29050/sec | failed: 2 events; avg 51.598221ms - 3.29050/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #208 for future & fallible event' TIMED OUT after 150.653234ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #208 for future & fallible event' ended after running for 607.811767ms -- stats: | ok: 2 events; avg 101.14041ms - 3.29049/sec | time out: 2 events; avg 151.1558ms - 3.29049/sec | failed: 2 events; avg 51.601902ms - 3.29049/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #209 for future & fallible event' TIMED OUT after 150.652148ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #209 for future & fallible event' ended after running for 607.812185ms -- stats: | ok: 2 events; avg 101.130649ms - 3.29049/sec | time out: 2 events; avg 151.155382ms - 3.29049/sec | failed: 2 events; avg 51.605836ms - 3.29049/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #210 for future & fallible event' TIMED OUT after 150.652635ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #210 for future & fallible event' ended after running for 607.813374ms -- stats: | ok: 2 events; avg 101.126984ms - 3.29048/sec | time out: 2 events; avg 151.161939ms - 3.29048/sec | failed: 2 events; avg 51.610004ms - 3.29048/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #211 for future & fallible event' TIMED OUT after 150.652354ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #211 for future & fallible event' ended after running for 607.813916ms -- stats: | ok: 2 events; avg 101.12384ms - 3.29048/sec | time out: 2 events; avg 151.162416ms - 3.29048/sec | failed: 2 events; avg 51.613584ms - 3.29048/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #212 for future & fallible event' TIMED OUT after 150.65104ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #212 for future & fallible event' ended after running for 607.8144ms -- stats: | ok: 2 events; avg 101.12004ms - 3.29048/sec | time out: 2 events; avg 151.161581ms - 3.29048/sec | failed: 2 events; avg 51.617205ms - 3.29048/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #213 for future & fallible event' TIMED OUT after 150.649813ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #213 for future & fallible event' ended after running for 607.8136ms -- stats: | ok: 2 events; avg 101.116687ms - 3.29048/sec | time out: 2 events; avg 151.160583ms - 3.29048/sec | failed: 2 events; avg 51.621258ms - 3.29048/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #214 for future & fallible event' TIMED OUT after 150.648733ms 2023-03-06T16:34:46.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #214 for future & fallible event' ended after running for 607.814179ms -- stats: | ok: 2 events; avg 101.113141ms - 3.29048/sec | time out: 2 events; avg 151.160166ms - 3.29048/sec | failed: 2 events; avg 51.625736ms - 3.29048/sec 2023-03-06T16:34:46.869Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #215 for future & fallible event' TIMED OUT after 150.648949ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #215 for future & fallible event' ended after running for 607.814617ms -- stats: | ok: 2 events; avg 101.109497ms - 3.29048/sec | time out: 2 events; avg 151.160419ms - 3.29048/sec | failed: 2 events; avg 51.629901ms - 3.29048/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #216 for future & fallible event' TIMED OUT after 150.648555ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #216 for future & fallible event' ended after running for 607.815215ms -- stats: | ok: 2 events; avg 101.106346ms - 3.29047/sec | time out: 2 events; avg 151.159823ms - 3.29047/sec | failed: 2 events; avg 51.633544ms - 3.29047/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #217 for future & fallible event' TIMED OUT after 150.648316ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #217 for future & fallible event' ended after running for 607.815969ms -- stats: | ok: 2 events; avg 101.102903ms - 3.29047/sec | time out: 2 events; avg 151.159286ms - 3.29047/sec | failed: 2 events; avg 51.637996ms - 3.29047/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #218 for future & fallible event' TIMED OUT after 150.647333ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #218 for future & fallible event' ended after running for 607.816691ms -- stats: | ok: 2 events; avg 101.099804ms - 3.29047/sec | time out: 2 events; avg 151.158661ms - 3.29047/sec | failed: 2 events; avg 51.641893ms - 3.29047/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #219 for future & fallible event' TIMED OUT after 150.647052ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #219 for future & fallible event' ended after running for 607.816925ms -- stats: | ok: 2 events; avg 101.097427ms - 3.29046/sec | time out: 2 events; avg 151.158571ms - 3.29046/sec | failed: 2 events; avg 51.645935ms - 3.29046/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #220 for future & fallible event' TIMED OUT after 150.646456ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #220 for future & fallible event' ended after running for 607.81767ms -- stats: | ok: 2 events; avg 101.094604ms - 3.29046/sec | time out: 2 events; avg 151.157841ms - 3.29046/sec | failed: 2 events; avg 51.649079ms - 3.29046/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #221 for future & fallible event' TIMED OUT after 150.64613ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #221 for future & fallible event' ended after running for 607.817953ms -- stats: | ok: 2 events; avg 101.091877ms - 3.29046/sec | time out: 2 events; avg 151.15729ms - 3.29046/sec | failed: 2 events; avg 51.65305ms - 3.29046/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #222 for future & fallible event' TIMED OUT after 150.644973ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #222 for future & fallible event' ended after running for 607.818715ms -- stats: | ok: 2 events; avg 101.088375ms - 3.29045/sec | time out: 2 events; avg 151.156336ms - 3.29045/sec | failed: 2 events; avg 51.656786ms - 3.29045/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #223 for future & fallible event' TIMED OUT after 150.643983ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #223 for future & fallible event' ended after running for 607.81914ms -- stats: | ok: 2 events; avg 101.085052ms - 3.29045/sec | time out: 2 events; avg 151.156187ms - 3.29045/sec | failed: 2 events; avg 51.660597ms - 3.29045/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #224 for future & fallible event' TIMED OUT after 150.642864ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #224 for future & fallible event' ended after running for 607.820575ms -- stats: | ok: 2 events; avg 101.082213ms - 3.29044/sec | time out: 2 events; avg 151.155829ms - 3.29044/sec | failed: 2 events; avg 51.664598ms - 3.29044/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #225 for future & fallible event' TIMED OUT after 150.641745ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #225 for future & fallible event' ended after running for 607.821441ms -- stats: | ok: 2 events; avg 101.079196ms - 3.29044/sec | time out: 2 events; avg 151.155263ms - 3.29044/sec | failed: 2 events; avg 51.668972ms - 3.29044/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #226 for future & fallible event' TIMED OUT after 150.64085ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #226 for future & fallible event' ended after running for 607.822425ms -- stats: | ok: 2 events; avg 101.076737ms - 3.29043/sec | time out: 2 events; avg 151.154831ms - 3.29043/sec | failed: 2 events; avg 51.672217ms - 3.29043/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #227 for future & fallible event' TIMED OUT after 150.639916ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #227 for future & fallible event' ended after running for 607.822882ms -- stats: | ok: 2 events; avg 101.073638ms - 3.29043/sec | time out: 2 events; avg 151.15431ms - 3.29043/sec | failed: 2 events; avg 51.676027ms - 3.29043/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #228 for future & fallible event' TIMED OUT after 150.638926ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #228 for future & fallible event' ended after running for 607.823526ms -- stats: | ok: 2 events; avg 101.070628ms - 3.29043/sec | time out: 2 events; avg 151.154041ms - 3.29043/sec | failed: 2 events; avg 51.679857ms - 3.29043/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #229 for future & fallible event' TIMED OUT after 150.638647ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #229 for future & fallible event' ended after running for 607.823868ms -- stats: | ok: 2 events; avg 101.067364ms - 3.29043/sec | time out: 2 events; avg 151.153773ms - 3.29043/sec | failed: 2 events; avg 51.683407ms - 3.29043/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #230 for future & fallible event' TIMED OUT after 150.63791ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #230 for future & fallible event' ended after running for 607.823967ms -- stats: | ok: 2 events; avg 101.064779ms - 3.29043/sec | time out: 2 events; avg 151.153401ms - 3.29043/sec | failed: 2 events; avg 51.686831ms - 3.29043/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #231 for future & fallible event' TIMED OUT after 150.63713ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #231 for future & fallible event' ended after running for 607.825034ms -- stats: | ok: 2 events; avg 101.054788ms - 3.29042/sec | time out: 2 events; avg 151.153028ms - 3.29042/sec | failed: 2 events; avg 51.69056ms - 3.29042/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #232 for future & fallible event' TIMED OUT after 150.636567ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #232 for future & fallible event' ended after running for 607.812363ms -- stats: | ok: 2 events; avg 101.05139ms - 3.29049/sec | time out: 2 events; avg 151.152492ms - 3.29049/sec | failed: 2 events; avg 51.694546ms - 3.29049/sec 2023-03-06T16:34:46.870Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #233 for future & fallible event' TIMED OUT after 150.635704ms 2023-03-06T16:34:46.870Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #233 for future & fallible event' ended after running for 607.812881ms -- stats: | ok: 2 events; avg 101.048648ms - 3.29049/sec | time out: 2 events; avg 151.152253ms - 3.29049/sec | failed: 2 events; avg 51.698349ms - 3.29049/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #234 for future & fallible event' TIMED OUT after 151.711654ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #234 for future & fallible event' ended after running for 608.893992ms -- stats: | ok: 2 events; avg 101.0454ms - 3.28464/sec | time out: 2 events; avg 151.689619ms - 3.28464/sec | failed: 2 events; avg 51.702335ms - 3.28464/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #235 for future & fallible event' TIMED OUT after 151.716875ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #235 for future & fallible event' ended after running for 608.896085ms -- stats: | ok: 2 events; avg 101.04274ms - 3.28463/sec | time out: 2 events; avg 151.692241ms - 3.28463/sec | failed: 2 events; avg 51.706243ms - 3.28463/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #236 for future & fallible event' TIMED OUT after 151.71706ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #236 for future & fallible event' ended after running for 608.897341ms -- stats: | ok: 2 events; avg 101.039998ms - 3.28463/sec | time out: 2 events; avg 151.692033ms - 3.28463/sec | failed: 2 events; avg 51.709659ms - 3.28463/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #237 for future & fallible event' TIMED OUT after 151.716983ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #237 for future & fallible event' ended after running for 608.897956ms -- stats: | ok: 2 events; avg 101.037361ms - 3.28462/sec | time out: 2 events; avg 151.691705ms - 3.28462/sec | failed: 2 events; avg 51.713184ms - 3.28462/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #238 for future & fallible event' TIMED OUT after 151.716746ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #238 for future & fallible event' ended after running for 608.898919ms -- stats: | ok: 2 events; avg 101.033993ms - 3.28462/sec | time out: 2 events; avg 151.691258ms - 3.28462/sec | failed: 2 events; avg 51.71692ms - 3.28462/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #239 for future & fallible event' TIMED OUT after 151.716408ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #239 for future & fallible event' ended after running for 608.899731ms -- stats: | ok: 2 events; avg 101.031139ms - 3.28461/sec | time out: 2 events; avg 151.691288ms - 3.28461/sec | failed: 2 events; avg 51.720187ms - 3.28461/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #240 for future & fallible event' TIMED OUT after 151.716487ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #240 for future & fallible event' ended after running for 608.90065ms -- stats: | ok: 2 events; avg 101.028554ms - 3.28461/sec | time out: 2 events; avg 151.691258ms - 3.28461/sec | failed: 2 events; avg 51.723868ms - 3.28461/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #241 for future & fallible event' TIMED OUT after 151.717865ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #241 for future & fallible event' ended after running for 608.903104ms -- stats: | ok: 2 events; avg 101.025566ms - 3.28459/sec | time out: 2 events; avg 151.691794ms - 3.28459/sec | failed: 2 events; avg 51.72734ms - 3.28459/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #242 for future & fallible event' TIMED OUT after 151.719654ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #242 for future & fallible event' ended after running for 608.905521ms -- stats: | ok: 2 events; avg 101.022616ms - 3.28458/sec | time out: 2 events; avg 151.692837ms - 3.28458/sec | failed: 2 events; avg 51.730722ms - 3.28458/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #243 for future & fallible event' TIMED OUT after 151.719966ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #243 for future & fallible event' ended after running for 608.906601ms -- stats: | ok: 2 events; avg 101.019353ms - 3.28458/sec | time out: 2 events; avg 151.692823ms - 3.28458/sec | failed: 2 events; avg 51.733837ms - 3.28458/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #244 for future & fallible event' TIMED OUT after 151.719886ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #244 for future & fallible event' ended after running for 608.90736ms -- stats: | ok: 2 events; avg 101.016492ms - 3.28457/sec | time out: 2 events; avg 151.692092ms - 3.28457/sec | failed: 2 events; avg 51.738039ms - 3.28457/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #245 for future & fallible event' TIMED OUT after 151.721841ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #245 for future & fallible event' ended after running for 608.910504ms -- stats: | ok: 2 events; avg 101.013906ms - 3.28455/sec | time out: 2 events; avg 151.692808ms - 3.28455/sec | failed: 2 events; avg 51.741455ms - 3.28455/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #246 for future & fallible event' TIMED OUT after 151.721961ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #246 for future & fallible event' ended after running for 608.911612ms -- stats: | ok: 2 events; avg 101.010814ms - 3.28455/sec | time out: 2 events; avg 151.69248ms - 3.28455/sec | failed: 2 events; avg 51.744785ms - 3.28455/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #247 for future & fallible event' TIMED OUT after 151.720981ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #247 for future & fallible event' ended after running for 608.911379ms -- stats: | ok: 2 events; avg 101.008005ms - 3.28455/sec | time out: 2 events; avg 151.691779ms - 3.28455/sec | failed: 2 events; avg 51.748879ms - 3.28455/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #248 for future & fallible event' TIMED OUT after 151.720897ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #248 for future & fallible event' ended after running for 608.912319ms -- stats: | ok: 2 events; avg 101.005331ms - 3.28455/sec | time out: 2 events; avg 151.691407ms - 3.28455/sec | failed: 2 events; avg 51.752646ms - 3.28455/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #249 for future & fallible event' TIMED OUT after 151.720391ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #249 for future & fallible event' ended after running for 608.913014ms -- stats: | ok: 2 events; avg 101.002872ms - 3.28454/sec | time out: 2 events; avg 151.690871ms - 3.28454/sec | failed: 2 events; avg 51.756188ms - 3.28454/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #250 for future & fallible event' TIMED OUT after 151.721561ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #250 for future & fallible event' ended after running for 608.915879ms -- stats: | ok: 2 events; avg 101.000153ms - 3.28453/sec | time out: 2 events; avg 151.690975ms - 3.28453/sec | failed: 2 events; avg 51.759683ms - 3.28453/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #251 for future & fallible event' TIMED OUT after 151.723073ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #251 for future & fallible event' ended after running for 608.919261ms -- stats: | ok: 2 events; avg 100.997172ms - 3.28451/sec | time out: 2 events; avg 151.691616ms - 3.28451/sec | failed: 2 events; avg 51.763292ms - 3.28451/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #252 for future & fallible event' TIMED OUT after 151.724988ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #252 for future & fallible event' ended after running for 608.921466ms -- stats: | ok: 2 events; avg 100.993946ms - 3.28450/sec | time out: 2 events; avg 151.692629ms - 3.28450/sec | failed: 2 events; avg 51.766895ms - 3.28450/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #253 for future & fallible event' TIMED OUT after 151.725841ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #253 for future & fallible event' ended after running for 608.921952ms -- stats: | ok: 2 events; avg 100.991473ms - 3.28449/sec | time out: 2 events; avg 151.692957ms - 3.28449/sec | failed: 2 events; avg 51.770329ms - 3.28449/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #254 for future & fallible event' TIMED OUT after 151.725367ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #254 for future & fallible event' ended after running for 608.923362ms -- stats: | ok: 2 events; avg 100.988805ms - 3.28449/sec | time out: 2 events; avg 151.692465ms - 3.28449/sec | failed: 2 events; avg 51.773436ms - 3.28449/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #255 for future & fallible event' TIMED OUT after 151.7251ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #255 for future & fallible event' ended after running for 608.923859ms -- stats: | ok: 2 events; avg 100.986056ms - 3.28448/sec | time out: 2 events; avg 151.692063ms - 3.28448/sec | failed: 2 events; avg 51.777132ms - 3.28448/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #0 for future & fallible event' TIMED OUT after 151.724573ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #0 for future & fallible event' ended after running for 610.018582ms -- stats: | ok: 2 events; avg 100.984305ms - 3.27859/sec | time out: 2 events; avg 151.691407ms - 3.27859/sec | failed: 2 events; avg 51.780447ms - 3.27859/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #1 for future & fallible event' TIMED OUT after 151.725047ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #1 for future & fallible event' ended after running for 610.016166ms -- stats: | ok: 2 events; avg 100.98286ms - 3.27860/sec | time out: 2 events; avg 151.691049ms - 3.27860/sec | failed: 2 events; avg 51.784173ms - 3.27860/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #2 for future & fallible event' TIMED OUT after 151.725384ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #2 for future & fallible event' ended after running for 610.017916ms -- stats: | ok: 2 events; avg 100.981221ms - 3.27859/sec | time out: 2 events; avg 151.690409ms - 3.27859/sec | failed: 2 events; avg 51.788639ms - 3.27859/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #3 for future & fallible event' TIMED OUT after 151.724975ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #3 for future & fallible event' ended after running for 610.020571ms -- stats: | ok: 2 events; avg 100.979567ms - 3.27858/sec | time out: 2 events; avg 151.686221ms - 3.27858/sec | failed: 2 events; avg 51.792145ms - 3.27858/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #4 for future & fallible event' TIMED OUT after 151.724702ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #4 for future & fallible event' ended after running for 610.023954ms -- stats: | ok: 2 events; avg 100.978486ms - 3.27856/sec | time out: 2 events; avg 151.685327ms - 3.27856/sec | failed: 2 events; avg 51.799841ms - 3.27856/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #5 for future & fallible event' TIMED OUT after 151.724416ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #5 for future & fallible event' ended after running for 610.026955ms -- stats: | ok: 2 events; avg 100.971445ms - 3.27854/sec | time out: 2 events; avg 151.689976ms - 3.27854/sec | failed: 2 events; avg 51.804423ms - 3.27854/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #6 for future & fallible event' TIMED OUT after 151.7259ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #6 for future & fallible event' ended after running for 610.030185ms -- stats: | ok: 2 events; avg 100.969695ms - 3.27853/sec | time out: 2 events; avg 151.690751ms - 3.27853/sec | failed: 2 events; avg 51.808365ms - 3.27853/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #7 for future & fallible event' TIMED OUT after 151.727355ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #7 for future & fallible event' ended after running for 610.033381ms -- stats: | ok: 2 events; avg 100.967988ms - 3.27851/sec | time out: 2 events; avg 151.69102ms - 3.27851/sec | failed: 2 events; avg 51.812217ms - 3.27851/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #8 for future & fallible event' TIMED OUT after 151.729739ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #8 for future & fallible event' ended after running for 610.037447ms -- stats: | ok: 2 events; avg 100.965545ms - 3.27849/sec | time out: 2 events; avg 151.692063ms - 3.27849/sec | failed: 2 events; avg 51.815983ms - 3.27849/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #9 for future & fallible event' TIMED OUT after 151.730738ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #9 for future & fallible event' ended after running for 610.04102ms -- stats: | ok: 2 events; avg 100.964263ms - 3.27847/sec | time out: 2 events; avg 151.693299ms - 3.27847/sec | failed: 2 events; avg 51.818959ms - 3.27847/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #10 for future & fallible event' TIMED OUT after 151.732453ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #10 for future & fallible event' ended after running for 610.045025ms -- stats: | ok: 2 events; avg 100.963116ms - 3.27845/sec | time out: 2 events; avg 151.694059ms - 3.27845/sec | failed: 2 events; avg 51.822718ms - 3.27845/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #11 for future & fallible event' TIMED OUT after 151.734599ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #11 for future & fallible event' ended after running for 610.048903ms -- stats: | ok: 2 events; avg 100.961514ms - 3.27843/sec | time out: 2 events; avg 151.694775ms - 3.27843/sec | failed: 2 events; avg 51.825952ms - 3.27843/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #12 for future & fallible event' TIMED OUT after 151.737065ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #12 for future & fallible event' ended after running for 610.052899ms -- stats: | ok: 2 events; avg 100.96021ms - 3.27840/sec | time out: 2 events; avg 151.695907ms - 3.27840/sec | failed: 2 events; avg 51.82948ms - 3.27840/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #13 for future & fallible event' TIMED OUT after 151.739011ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #13 for future & fallible event' ended after running for 610.056798ms -- stats: | ok: 2 events; avg 100.958496ms - 3.27838/sec | time out: 2 events; avg 151.696175ms - 3.27838/sec | failed: 2 events; avg 51.832981ms - 3.27838/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #14 for future & fallible event' TIMED OUT after 151.740764ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #14 for future & fallible event' ended after running for 610.060686ms -- stats: | ok: 2 events; avg 100.956753ms - 3.27836/sec | time out: 2 events; avg 151.696846ms - 3.27836/sec | failed: 2 events; avg 51.837172ms - 3.27836/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #15 for future & fallible event' TIMED OUT after 151.743512ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #15 for future & fallible event' ended after running for 610.064916ms -- stats: | ok: 2 events; avg 100.955188ms - 3.27834/sec | time out: 2 events; avg 151.698232ms - 3.27834/sec | failed: 2 events; avg 51.84048ms - 3.27834/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #16 for future & fallible event' TIMED OUT after 151.746075ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #16 for future & fallible event' ended after running for 610.069224ms -- stats: | ok: 2 events; avg 100.953706ms - 3.27832/sec | time out: 2 events; avg 151.699334ms - 3.27832/sec | failed: 2 events; avg 51.844046ms - 3.27832/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #17 for future & fallible event' TIMED OUT after 151.748313ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #17 for future & fallible event' ended after running for 610.073737ms -- stats: | ok: 2 events; avg 100.952089ms - 3.27829/sec | time out: 2 events; avg 151.700452ms - 3.27829/sec | failed: 2 events; avg 51.847361ms - 3.27829/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #18 for future & fallible event' TIMED OUT after 151.75255ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #18 for future & fallible event' ended after running for 610.080189ms -- stats: | ok: 2 events; avg 100.950398ms - 3.27826/sec | time out: 2 events; avg 151.702449ms - 3.27826/sec | failed: 2 events; avg 51.850926ms - 3.27826/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #19 for future & fallible event' TIMED OUT after 151.756075ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #19 for future & fallible event' ended after running for 610.084146ms -- stats: | ok: 2 events; avg 100.94896ms - 3.27824/sec | time out: 2 events; avg 151.703775ms - 3.27824/sec | failed: 2 events; avg 51.85429ms - 3.27824/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #20 for future & fallible event' TIMED OUT after 151.758508ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #20 for future & fallible event' ended after running for 610.087871ms -- stats: | ok: 2 events; avg 100.947812ms - 3.27822/sec | time out: 2 events; avg 151.704505ms - 3.27822/sec | failed: 2 events; avg 51.858157ms - 3.27822/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #21 for future & fallible event' TIMED OUT after 151.760662ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #21 for future & fallible event' ended after running for 610.091791ms -- stats: | ok: 2 events; avg 100.946009ms - 3.27820/sec | time out: 2 events; avg 151.704893ms - 3.27820/sec | failed: 2 events; avg 51.861465ms - 3.27820/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #22 for future & fallible event' TIMED OUT after 151.76332ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #22 for future & fallible event' ended after running for 610.096355ms -- stats: | ok: 2 events; avg 100.944847ms - 3.27817/sec | time out: 2 events; avg 151.706278ms - 3.27817/sec | failed: 2 events; avg 51.865019ms - 3.27817/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #23 for future & fallible event' TIMED OUT after 151.765358ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #23 for future & fallible event' ended after running for 610.100059ms -- stats: | ok: 2 events; avg 100.943483ms - 3.27815/sec | time out: 2 events; avg 151.706815ms - 3.27815/sec | failed: 2 events; avg 51.868752ms - 3.27815/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #24 for future & fallible event' TIMED OUT after 151.767331ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #24 for future & fallible event' ended after running for 610.104052ms -- stats: | ok: 2 events; avg 100.94206ms - 3.27813/sec | time out: 2 events; avg 151.707679ms - 3.27813/sec | failed: 2 events; avg 51.872417ms - 3.27813/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #25 for future & fallible event' TIMED OUT after 151.769937ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #25 for future & fallible event' ended after running for 610.108173ms -- stats: | ok: 2 events; avg 100.940414ms - 3.27811/sec | time out: 2 events; avg 151.708722ms - 3.27811/sec | failed: 2 events; avg 51.875886ms - 3.27811/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #26 for future & fallible event' TIMED OUT after 151.77233ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #26 for future & fallible event' ended after running for 610.112029ms -- stats: | ok: 2 events; avg 100.938842ms - 3.27809/sec | time out: 2 events; avg 151.709735ms - 3.27809/sec | failed: 2 events; avg 51.879346ms - 3.27809/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #27 for future & fallible event' TIMED OUT after 151.774796ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #27 for future & fallible event' ended after running for 610.116053ms -- stats: | ok: 2 events; avg 100.937374ms - 3.27806/sec | time out: 2 events; avg 151.710838ms - 3.27806/sec | failed: 2 events; avg 51.882982ms - 3.27806/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #28 for future & fallible event' TIMED OUT after 151.777359ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #28 for future & fallible event' ended after running for 610.120096ms -- stats: | ok: 2 events; avg 100.935698ms - 3.27804/sec | time out: 2 events; avg 151.711822ms - 3.27804/sec | failed: 2 events; avg 51.886335ms - 3.27804/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #29 for future & fallible event' TIMED OUT after 151.780021ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #29 for future & fallible event' ended after running for 610.123864ms -- stats: | ok: 2 events; avg 100.933567ms - 3.27802/sec | time out: 2 events; avg 151.712954ms - 3.27802/sec | failed: 2 events; avg 51.889665ms - 3.27802/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #30 for future & fallible event' TIMED OUT after 151.781972ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #30 for future & fallible event' ended after running for 610.127297ms -- stats: | ok: 2 events; avg 100.932501ms - 3.27800/sec | time out: 2 events; avg 151.714176ms - 3.27800/sec | failed: 2 events; avg 51.893339ms - 3.27800/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #31 for future & fallible event' TIMED OUT after 151.784065ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #31 for future & fallible event' ended after running for 610.130694ms -- stats: | ok: 2 events; avg 100.931346ms - 3.27799/sec | time out: 2 events; avg 151.714534ms - 3.27799/sec | failed: 2 events; avg 51.896825ms - 3.27799/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #32 for future & fallible event' TIMED OUT after 151.785472ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #32 for future & fallible event' ended after running for 610.133962ms -- stats: | ok: 2 events; avg 100.929663ms - 3.27797/sec | time out: 2 events; avg 151.714534ms - 3.27797/sec | failed: 2 events; avg 51.900394ms - 3.27797/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #33 for future & fallible event' TIMED OUT after 151.786954ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #33 for future & fallible event' ended after running for 610.137801ms -- stats: | ok: 2 events; avg 100.928277ms - 3.27795/sec | time out: 2 events; avg 151.71504ms - 3.27795/sec | failed: 2 events; avg 51.904604ms - 3.27795/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #34 for future & fallible event' TIMED OUT after 151.789021ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #34 for future & fallible event' ended after running for 610.141765ms -- stats: | ok: 2 events; avg 100.926526ms - 3.27793/sec | time out: 2 events; avg 151.715577ms - 3.27793/sec | failed: 2 events; avg 51.908575ms - 3.27793/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #35 for future & fallible event' TIMED OUT after 151.791432ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #35 for future & fallible event' ended after running for 610.14543ms -- stats: | ok: 2 events; avg 100.925028ms - 3.27791/sec | time out: 2 events; avg 151.71656ms - 3.27791/sec | failed: 2 events; avg 51.912375ms - 3.27791/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #36 for future & fallible event' TIMED OUT after 151.794188ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #36 for future & fallible event' ended after running for 610.149769ms -- stats: | ok: 2 events; avg 100.923806ms - 3.27788/sec | time out: 2 events; avg 151.717544ms - 3.27788/sec | failed: 2 events; avg 51.915724ms - 3.27788/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #37 for future & fallible event' TIMED OUT after 151.796204ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #37 for future & fallible event' ended after running for 610.154067ms -- stats: | ok: 2 events; avg 100.92251ms - 3.27786/sec | time out: 2 events; avg 151.717424ms - 3.27786/sec | failed: 2 events; avg 51.919289ms - 3.27786/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #38 for future & fallible event' TIMED OUT after 151.799137ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #38 for future & fallible event' ended after running for 610.157957ms -- stats: | ok: 2 events; avg 100.92096ms - 3.27784/sec | time out: 2 events; avg 151.718512ms - 3.27784/sec | failed: 2 events; avg 51.923707ms - 3.27784/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #39 for future & fallible event' TIMED OUT after 151.802509ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #39 for future & fallible event' ended after running for 610.162787ms -- stats: | ok: 2 events; avg 100.91953ms - 3.27781/sec | time out: 2 events; avg 151.718855ms - 3.27781/sec | failed: 2 events; avg 51.927112ms - 3.27781/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #40 for future & fallible event' TIMED OUT after 151.802511ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #40 for future & fallible event' ended after running for 610.166733ms -- stats: | ok: 2 events; avg 100.917861ms - 3.27779/sec | time out: 2 events; avg 151.718482ms - 3.27779/sec | failed: 2 events; avg 51.931687ms - 3.27779/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #41 for future & fallible event' TIMED OUT after 151.804749ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #41 for future & fallible event' ended after running for 610.17138ms -- stats: | ok: 2 events; avg 100.916222ms - 3.27777/sec | time out: 2 events; avg 151.71957ms - 3.27777/sec | failed: 2 events; avg 51.936429ms - 3.27777/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #42 for future & fallible event' TIMED OUT after 151.807026ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #42 for future & fallible event' ended after running for 610.175507ms -- stats: | ok: 2 events; avg 100.915089ms - 3.27775/sec | time out: 2 events; avg 151.720151ms - 3.27775/sec | failed: 2 events; avg 51.940136ms - 3.27775/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #43 for future & fallible event' TIMED OUT after 151.81057ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #43 for future & fallible event' ended after running for 610.180077ms -- stats: | ok: 2 events; avg 100.913607ms - 3.27772/sec | time out: 2 events; avg 151.721552ms - 3.27772/sec | failed: 2 events; avg 51.94388ms - 3.27772/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #44 for future & fallible event' TIMED OUT after 151.81514ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #44 for future & fallible event' ended after running for 610.187089ms -- stats: | ok: 2 events; avg 100.912169ms - 3.27768/sec | time out: 2 events; avg 151.723415ms - 3.27768/sec | failed: 2 events; avg 51.947188ms - 3.27768/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #45 for future & fallible event' TIMED OUT after 151.819438ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #45 for future & fallible event' ended after running for 610.193145ms -- stats: | ok: 2 events; avg 100.910746ms - 3.27765/sec | time out: 2 events; avg 151.725382ms - 3.27765/sec | failed: 2 events; avg 51.950671ms - 3.27765/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #46 for future & fallible event' TIMED OUT after 151.824883ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #46 for future & fallible event' ended after running for 610.19937ms -- stats: | ok: 2 events; avg 100.909412ms - 3.27762/sec | time out: 2 events; avg 151.7279ms - 3.27762/sec | failed: 2 events; avg 51.954128ms - 3.27762/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #47 for future & fallible event' TIMED OUT after 151.829896ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #47 for future & fallible event' ended after running for 610.205119ms -- stats: | ok: 2 events; avg 100.907795ms - 3.27759/sec | time out: 2 events; avg 151.729971ms - 3.27759/sec | failed: 2 events; avg 51.957551ms - 3.27759/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #48 for future & fallible event' TIMED OUT after 151.83264ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #48 for future & fallible event' ended after running for 610.208445ms -- stats: | ok: 2 events; avg 100.906402ms - 3.27757/sec | time out: 2 events; avg 151.731282ms - 3.27757/sec | failed: 2 events; avg 51.961049ms - 3.27757/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #49 for future & fallible event' TIMED OUT after 151.834673ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #49 for future & fallible event' ended after running for 610.211758ms -- stats: | ok: 2 events; avg 100.904703ms - 3.27755/sec | time out: 2 events; avg 151.731104ms - 3.27755/sec | failed: 2 events; avg 51.964823ms - 3.27755/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #50 for future & fallible event' TIMED OUT after 151.836883ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #50 for future & fallible event' ended after running for 610.215247ms -- stats: | ok: 2 events; avg 100.902677ms - 3.27753/sec | time out: 2 events; avg 151.732162ms - 3.27753/sec | failed: 2 events; avg 51.968288ms - 3.27753/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #51 for future & fallible event' TIMED OUT after 151.838746ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #51 for future & fallible event' ended after running for 610.217981ms -- stats: | ok: 2 events; avg 100.901179ms - 3.27752/sec | time out: 2 events; avg 151.733339ms - 3.27752/sec | failed: 2 events; avg 51.971532ms - 3.27752/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #52 for future & fallible event' TIMED OUT after 151.839936ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #52 for future & fallible event' ended after running for 610.220838ms -- stats: | ok: 2 events; avg 100.899756ms - 3.27750/sec | time out: 2 events; avg 151.733726ms - 3.27750/sec | failed: 2 events; avg 51.974688ms - 3.27750/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #53 for future & fallible event' TIMED OUT after 151.841214ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #53 for future & fallible event' ended after running for 610.224152ms -- stats: | ok: 2 events; avg 100.898415ms - 3.27748/sec | time out: 2 events; avg 151.734173ms - 3.27748/sec | failed: 2 events; avg 51.97813ms - 3.27748/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #54 for future & fallible event' TIMED OUT after 151.842783ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #54 for future & fallible event' ended after running for 610.227372ms -- stats: | ok: 2 events; avg 100.896925ms - 3.27747/sec | time out: 2 events; avg 151.734978ms - 3.27747/sec | failed: 2 events; avg 51.981561ms - 3.27747/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #55 for future & fallible event' TIMED OUT after 151.844185ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #55 for future & fallible event' ended after running for 610.230233ms -- stats: | ok: 2 events; avg 100.89536ms - 3.27745/sec | time out: 2 events; avg 151.735619ms - 3.27745/sec | failed: 2 events; avg 51.985115ms - 3.27745/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #56 for future & fallible event' TIMED OUT after 151.845557ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #56 for future & fallible event' ended after running for 610.233717ms -- stats: | ok: 2 events; avg 100.893661ms - 3.27743/sec | time out: 2 events; avg 151.736021ms - 3.27743/sec | failed: 2 events; avg 51.988471ms - 3.27743/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #57 for future & fallible event' TIMED OUT after 151.848139ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #57 for future & fallible event' ended after running for 610.237568ms -- stats: | ok: 2 events; avg 100.892499ms - 3.27741/sec | time out: 2 events; avg 151.737228ms - 3.27741/sec | failed: 2 events; avg 51.991731ms - 3.27741/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #58 for future & fallible event' TIMED OUT after 151.849368ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #58 for future & fallible event' ended after running for 610.241093ms -- stats: | ok: 2 events; avg 100.891069ms - 3.27739/sec | time out: 2 events; avg 151.737988ms - 3.27739/sec | failed: 2 events; avg 51.995084ms - 3.27739/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #59 for future & fallible event' TIMED OUT after 151.850936ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #59 for future & fallible event' ended after running for 610.244781ms -- stats: | ok: 2 events; avg 100.889176ms - 3.27737/sec | time out: 2 events; avg 151.738495ms - 3.27737/sec | failed: 2 events; avg 51.998891ms - 3.27737/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #60 for future & fallible event' TIMED OUT after 151.852361ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #60 for future & fallible event' ended after running for 610.248041ms -- stats: | ok: 2 events; avg 100.887567ms - 3.27736/sec | time out: 2 events; avg 151.739359ms - 3.27736/sec | failed: 2 events; avg 52.002765ms - 3.27736/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #61 for future & fallible event' TIMED OUT after 151.853831ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #61 for future & fallible event' ended after running for 610.049527ms -- stats: | ok: 2 events; avg 100.886256ms - 3.27842/sec | time out: 2 events; avg 151.73994ms - 3.27842/sec | failed: 2 events; avg 52.006252ms - 3.27842/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #62 for future & fallible event' TIMED OUT after 151.855892ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #62 for future & fallible event' ended after running for 610.05052ms -- stats: | ok: 2 events; avg 100.88475ms - 3.27842/sec | time out: 2 events; avg 151.740566ms - 3.27842/sec | failed: 2 events; avg 52.009959ms - 3.27842/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #63 for future & fallible event' TIMED OUT after 151.858021ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #63 for future & fallible event' ended after running for 610.053501ms -- stats: | ok: 2 events; avg 100.883186ms - 3.27840/sec | time out: 2 events; avg 151.741058ms - 3.27840/sec | failed: 2 events; avg 52.012995ms - 3.27840/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #64 for future & fallible event' TIMED OUT after 151.860205ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #64 for future & fallible event' ended after running for 610.05713ms -- stats: | ok: 2 events; avg 100.882053ms - 3.27838/sec | time out: 2 events; avg 151.741967ms - 3.27838/sec | failed: 2 events; avg 52.016839ms - 3.27838/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #65 for future & fallible event' TIMED OUT after 151.862195ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #65 for future & fallible event' ended after running for 610.061286ms -- stats: | ok: 2 events; avg 100.880384ms - 3.27836/sec | time out: 2 events; avg 151.742935ms - 3.27836/sec | failed: 2 events; avg 52.020177ms - 3.27836/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #66 for future & fallible event' TIMED OUT after 151.863369ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #66 for future & fallible event' ended after running for 610.064809ms -- stats: | ok: 2 events; avg 100.878015ms - 3.27834/sec | time out: 2 events; avg 151.744246ms - 3.27834/sec | failed: 2 events; avg 52.023936ms - 3.27834/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #67 for future & fallible event' TIMED OUT after 151.865601ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #67 for future & fallible event' ended after running for 610.067908ms -- stats: | ok: 2 events; avg 100.875862ms - 3.27832/sec | time out: 2 events; avg 151.74529ms - 3.27832/sec | failed: 2 events; avg 52.027408ms - 3.27832/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #68 for future & fallible event' TIMED OUT after 151.866708ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #68 for future & fallible event' ended after running for 610.071369ms -- stats: | ok: 2 events; avg 100.874215ms - 3.27830/sec | time out: 2 events; avg 151.746154ms - 3.27830/sec | failed: 2 events; avg 52.030608ms - 3.27830/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #69 for future & fallible event' TIMED OUT after 151.867932ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #69 for future & fallible event' ended after running for 610.074674ms -- stats: | ok: 2 events; avg 100.872621ms - 3.27829/sec | time out: 2 events; avg 151.74672ms - 3.27829/sec | failed: 2 events; avg 52.034028ms - 3.27829/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #70 for future & fallible event' TIMED OUT after 151.869721ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #70 for future & fallible event' ended after running for 610.078109ms -- stats: | ok: 2 events; avg 100.871548ms - 3.27827/sec | time out: 2 events; avg 151.747763ms - 3.27827/sec | failed: 2 events; avg 52.037805ms - 3.27827/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #71 for future & fallible event' TIMED OUT after 151.871917ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #71 for future & fallible event' ended after running for 610.081482ms -- stats: | ok: 2 events; avg 100.870222ms - 3.27825/sec | time out: 2 events; avg 151.748478ms - 3.27825/sec | failed: 2 events; avg 52.041057ms - 3.27825/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #72 for future & fallible event' TIMED OUT after 151.873487ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #72 for future & fallible event' ended after running for 610.08535ms -- stats: | ok: 2 events; avg 100.868389ms - 3.27823/sec | time out: 2 events; avg 151.749194ms - 3.27823/sec | failed: 2 events; avg 52.044604ms - 3.27823/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #73 for future & fallible event' TIMED OUT after 151.875886ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #73 for future & fallible event' ended after running for 610.088831ms -- stats: | ok: 2 events; avg 100.86672ms - 3.27821/sec | time out: 2 events; avg 151.749998ms - 3.27821/sec | failed: 2 events; avg 52.048068ms - 3.27821/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #74 for future & fallible event' TIMED OUT after 151.878662ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #74 for future & fallible event' ended after running for 610.093962ms -- stats: | ok: 2 events; avg 100.865051ms - 3.27818/sec | time out: 2 events; avg 151.75125ms - 3.27818/sec | failed: 2 events; avg 52.051898ms - 3.27818/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #75 for future & fallible event' TIMED OUT after 151.881713ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #75 for future & fallible event' ended after running for 610.098886ms -- stats: | ok: 2 events; avg 100.863427ms - 3.27816/sec | time out: 2 events; avg 151.75271ms - 3.27816/sec | failed: 2 events; avg 52.055255ms - 3.27816/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #76 for future & fallible event' TIMED OUT after 151.885465ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #76 for future & fallible event' ended after running for 610.102937ms -- stats: | ok: 2 events; avg 100.862294ms - 3.27814/sec | time out: 2 events; avg 151.754484ms - 3.27814/sec | failed: 2 events; avg 52.058354ms - 3.27814/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #77 for future & fallible event' TIMED OUT after 151.887115ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #77 for future & fallible event' ended after running for 610.106088ms -- stats: | ok: 2 events; avg 100.860998ms - 3.27812/sec | time out: 2 events; avg 151.754931ms - 3.27812/sec | failed: 2 events; avg 52.061789ms - 3.27812/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #78 for future & fallible event' TIMED OUT after 151.889224ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #78 for future & fallible event' ended after running for 610.109742ms -- stats: | ok: 2 events; avg 100.85959ms - 3.27810/sec | time out: 2 events; avg 151.75584ms - 3.27810/sec | failed: 2 events; avg 52.065354ms - 3.27810/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #79 for future & fallible event' TIMED OUT after 151.891218ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #79 for future & fallible event' ended after running for 610.112566ms -- stats: | ok: 2 events; avg 100.858167ms - 3.27808/sec | time out: 2 events; avg 151.756451ms - 3.27808/sec | failed: 2 events; avg 52.068666ms - 3.27808/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #80 for future & fallible event' TIMED OUT after 151.892751ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #80 for future & fallible event' ended after running for 610.115821ms -- stats: | ok: 2 events; avg 100.85655ms - 3.27807/sec | time out: 2 events; avg 151.756853ms - 3.27807/sec | failed: 2 events; avg 52.072115ms - 3.27807/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #81 for future & fallible event' TIMED OUT after 151.894508ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #81 for future & fallible event' ended after running for 610.119346ms -- stats: | ok: 2 events; avg 100.855052ms - 3.27805/sec | time out: 2 events; avg 151.757628ms - 3.27805/sec | failed: 2 events; avg 52.075513ms - 3.27805/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #82 for future & fallible event' TIMED OUT after 151.896948ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #82 for future & fallible event' ended after running for 610.122764ms -- stats: | ok: 2 events; avg 100.854069ms - 3.27803/sec | time out: 2 events; avg 151.758373ms - 3.27803/sec | failed: 2 events; avg 52.078787ms - 3.27803/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #83 for future & fallible event' TIMED OUT after 151.898205ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #83 for future & fallible event' ended after running for 610.125623ms -- stats: | ok: 2 events; avg 100.852817ms - 3.27801/sec | time out: 2 events; avg 151.758522ms - 3.27801/sec | failed: 2 events; avg 52.08211ms - 3.27801/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #84 for future & fallible event' TIMED OUT after 151.899353ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #84 for future & fallible event' ended after running for 610.128875ms -- stats: | ok: 2 events; avg 100.851282ms - 3.27800/sec | time out: 2 events; avg 151.759043ms - 3.27800/sec | failed: 2 events; avg 52.085493ms - 3.27800/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #85 for future & fallible event' TIMED OUT after 151.90199ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #85 for future & fallible event' ended after running for 610.132707ms -- stats: | ok: 2 events; avg 100.849845ms - 3.27798/sec | time out: 2 events; avg 151.760012ms - 3.27798/sec | failed: 2 events; avg 52.089155ms - 3.27798/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #86 for future & fallible event' TIMED OUT after 151.903262ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #86 for future & fallible event' ended after running for 610.135582ms -- stats: | ok: 2 events; avg 100.848414ms - 3.27796/sec | time out: 2 events; avg 151.760101ms - 3.27796/sec | failed: 2 events; avg 52.092381ms - 3.27796/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #87 for future & fallible event' TIMED OUT after 151.904705ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #87 for future & fallible event' ended after running for 610.138398ms -- stats: | ok: 2 events; avg 100.846827ms - 3.27794/sec | time out: 2 events; avg 151.760399ms - 3.27794/sec | failed: 2 events; avg 52.096389ms - 3.27794/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #88 for future & fallible event' TIMED OUT after 151.906033ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #88 for future & fallible event' ended after running for 610.141625ms -- stats: | ok: 2 events; avg 100.845143ms - 3.27793/sec | time out: 2 events; avg 151.751205ms - 3.27793/sec | failed: 2 events; avg 52.099597ms - 3.27793/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #89 for future & fallible event' TIMED OUT after 151.907764ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #89 for future & fallible event' ended after running for 610.144654ms -- stats: | ok: 2 events; avg 100.843631ms - 3.27791/sec | time out: 2 events; avg 151.752263ms - 3.27791/sec | failed: 2 events; avg 52.112583ms - 3.27791/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #90 for future & fallible event' TIMED OUT after 151.909232ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #90 for future & fallible event' ended after running for 610.14739ms -- stats: | ok: 2 events; avg 100.842237ms - 3.27790/sec | time out: 2 events; avg 151.752949ms - 3.27790/sec | failed: 2 events; avg 52.115906ms - 3.27790/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #91 for future & fallible event' TIMED OUT after 151.910757ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #91 for future & fallible event' ended after running for 610.150303ms -- stats: | ok: 2 events; avg 100.840703ms - 3.27788/sec | time out: 2 events; avg 151.753068ms - 3.27788/sec | failed: 2 events; avg 52.119471ms - 3.27788/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #92 for future & fallible event' TIMED OUT after 151.904937ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #92 for future & fallible event' ended after running for 610.153441ms -- stats: | ok: 2 events; avg 100.839116ms - 3.27786/sec | time out: 2 events; avg 151.74976ms - 3.27786/sec | failed: 2 events; avg 52.123323ms - 3.27786/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #93 for future & fallible event' TIMED OUT after 151.905086ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #93 for future & fallible event' ended after running for 610.156585ms -- stats: | ok: 2 events; avg 100.823633ms - 3.27785/sec | time out: 2 events; avg 151.74979ms - 3.27785/sec | failed: 2 events; avg 52.131124ms - 3.27785/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #94 for future & fallible event' TIMED OUT after 151.905442ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #94 for future & fallible event' ended after running for 610.159549ms -- stats: | ok: 2 events; avg 100.821853ms - 3.27783/sec | time out: 2 events; avg 151.763886ms - 3.27783/sec | failed: 2 events; avg 52.134357ms - 3.27783/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #95 for future & fallible event' TIMED OUT after 151.906703ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #95 for future & fallible event' ended after running for 610.162291ms -- stats: | ok: 2 events; avg 100.82031ms - 3.27782/sec | time out: 2 events; avg 151.764497ms - 3.27782/sec | failed: 2 events; avg 52.138306ms - 3.27782/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #96 for future & fallible event' TIMED OUT after 151.908698ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #96 for future & fallible event' ended after running for 610.165097ms -- stats: | ok: 2 events; avg 100.819126ms - 3.27780/sec | time out: 2 events; avg 151.765361ms - 3.27780/sec | failed: 2 events; avg 52.141838ms - 3.27780/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #97 for future & fallible event' TIMED OUT after 151.909973ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #97 for future & fallible event' ended after running for 610.168018ms -- stats: | ok: 2 events; avg 100.817725ms - 3.27779/sec | time out: 2 events; avg 151.75873ms - 3.27779/sec | failed: 2 events; avg 52.14493ms - 3.27779/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #98 for future & fallible event' TIMED OUT after 151.911445ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #98 for future & fallible event' ended after running for 610.170544ms -- stats: | ok: 2 events; avg 100.81622ms - 3.27777/sec | time out: 2 events; avg 151.759177ms - 3.27777/sec | failed: 2 events; avg 52.155342ms - 3.27777/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #99 for future & fallible event' TIMED OUT after 151.913558ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #99 for future & fallible event' ended after running for 610.17397ms -- stats: | ok: 2 events; avg 100.814551ms - 3.27775/sec | time out: 2 events; avg 151.76025ms - 3.27775/sec | failed: 2 events; avg 52.158803ms - 3.27775/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #100 for future & fallible event' TIMED OUT after 151.915447ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #100 for future & fallible event' ended after running for 610.17742ms -- stats: | ok: 2 events; avg 100.812927ms - 3.27774/sec | time out: 2 events; avg 151.760817ms - 3.27774/sec | failed: 2 events; avg 52.162062ms - 3.27774/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #101 for future & fallible event' TIMED OUT after 151.917038ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #101 for future & fallible event' ended after running for 610.180566ms -- stats: | ok: 2 events; avg 100.811854ms - 3.27772/sec | time out: 2 events; avg 151.761472ms - 3.27772/sec | failed: 2 events; avg 52.165374ms - 3.27772/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #102 for future & fallible event' TIMED OUT after 151.918694ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #102 for future & fallible event' ended after running for 610.184051ms -- stats: | ok: 2 events; avg 100.803897ms - 3.27770/sec | time out: 2 events; avg 151.761949ms - 3.27770/sec | failed: 2 events; avg 52.16869ms - 3.27770/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #103 for future & fallible event' TIMED OUT after 151.921599ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #103 for future & fallible event' ended after running for 610.187127ms -- stats: | ok: 2 events; avg 100.802548ms - 3.27768/sec | time out: 2 events; avg 151.769638ms - 3.27768/sec | failed: 2 events; avg 52.172016ms - 3.27768/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #104 for future & fallible event' TIMED OUT after 151.923163ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #104 for future & fallible event' ended after running for 610.190058ms -- stats: | ok: 2 events; avg 100.801252ms - 3.27767/sec | time out: 2 events; avg 151.770145ms - 3.27767/sec | failed: 2 events; avg 52.175067ms - 3.27767/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #105 for future & fallible event' TIMED OUT after 151.924677ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #105 for future & fallible event' ended after running for 610.194036ms -- stats: | ok: 2 events; avg 100.799873ms - 3.27765/sec | time out: 2 events; avg 151.770487ms - 3.27765/sec | failed: 2 events; avg 52.178454ms - 3.27765/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #106 for future & fallible event' TIMED OUT after 151.929654ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #106 for future & fallible event' ended after running for 610.206655ms -- stats: | ok: 2 events; avg 100.798458ms - 3.27758/sec | time out: 2 events; avg 151.772574ms - 3.27758/sec | failed: 2 events; avg 52.181527ms - 3.27758/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #107 for future & fallible event' TIMED OUT after 151.941082ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #107 for future & fallible event' ended after running for 610.212928ms -- stats: | ok: 2 events; avg 100.797102ms - 3.27754/sec | time out: 2 events; avg 151.777923ms - 3.27754/sec | failed: 2 events; avg 52.185044ms - 3.27754/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #108 for future & fallible event' TIMED OUT after 151.943357ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #108 for future & fallible event' ended after running for 610.216119ms -- stats: | ok: 2 events; avg 100.795723ms - 3.27753/sec | time out: 2 events; avg 151.779205ms - 3.27753/sec | failed: 2 events; avg 52.188601ms - 3.27753/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #109 for future & fallible event' TIMED OUT after 151.945245ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #109 for future & fallible event' ended after running for 610.219298ms -- stats: | ok: 2 events; avg 100.79392ms - 3.27751/sec | time out: 2 events; avg 151.779413ms - 3.27751/sec | failed: 2 events; avg 52.191637ms - 3.27751/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #110 for future & fallible event' TIMED OUT after 151.946916ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #110 for future & fallible event' ended after running for 610.222418ms -- stats: | ok: 2 events; avg 100.792557ms - 3.27749/sec | time out: 2 events; avg 151.779965ms - 3.27749/sec | failed: 2 events; avg 52.195344ms - 3.27749/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #111 for future & fallible event' TIMED OUT after 151.948441ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #111 for future & fallible event' ended after running for 610.225436ms -- stats: | ok: 2 events; avg 100.791179ms - 3.27748/sec | time out: 2 events; avg 151.78059ms - 3.27748/sec | failed: 2 events; avg 52.198622ms - 3.27748/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #112 for future & fallible event' TIMED OUT after 151.948959ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #112 for future & fallible event' ended after running for 610.22839ms -- stats: | ok: 2 events; avg 100.789636ms - 3.27746/sec | time out: 2 events; avg 151.780695ms - 3.27746/sec | failed: 2 events; avg 52.202195ms - 3.27746/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #113 for future & fallible event' TIMED OUT after 151.950768ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #113 for future & fallible event' ended after running for 610.232124ms -- stats: | ok: 2 events; avg 100.788116ms - 3.27744/sec | time out: 2 events; avg 151.781529ms - 3.27744/sec | failed: 2 events; avg 52.206211ms - 3.27744/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #114 for future & fallible event' TIMED OUT after 151.952333ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #114 for future & fallible event' ended after running for 610.235019ms -- stats: | ok: 2 events; avg 100.786671ms - 3.27743/sec | time out: 2 events; avg 151.781857ms - 3.27743/sec | failed: 2 events; avg 52.209772ms - 3.27743/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #115 for future & fallible event' TIMED OUT after 151.953876ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #115 for future & fallible event' ended after running for 610.238171ms -- stats: | ok: 2 events; avg 100.785166ms - 3.27741/sec | time out: 2 events; avg 151.782274ms - 3.27741/sec | failed: 2 events; avg 52.213237ms - 3.27741/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #116 for future & fallible event' TIMED OUT after 151.954639ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #116 for future & fallible event' ended after running for 610.241207ms -- stats: | ok: 2 events; avg 100.783929ms - 3.27739/sec | time out: 2 events; avg 151.782334ms - 3.27739/sec | failed: 2 events; avg 52.216724ms - 3.27739/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #117 for future & fallible event' TIMED OUT after 151.955877ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #117 for future & fallible event' ended after running for 610.24442ms -- stats: | ok: 2 events; avg 100.78238ms - 3.27738/sec | time out: 2 events; avg 151.782662ms - 3.27738/sec | failed: 2 events; avg 52.220248ms - 3.27738/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #118 for future & fallible event' TIMED OUT after 151.957538ms 2023-03-06T16:34:46.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #118 for future & fallible event' ended after running for 610.247611ms -- stats: | ok: 2 events; avg 100.780964ms - 3.27736/sec | time out: 2 events; avg 151.783139ms - 3.27736/sec | failed: 2 events; avg 52.223928ms - 3.27736/sec 2023-03-06T16:34:46.871Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #119 for future & fallible event' TIMED OUT after 151.959218ms 2023-03-06T16:34:46.872Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #119 for future & fallible event' ended after running for 610.25087ms -- stats: | ok: 2 events; avg 100.779481ms - 3.27734/sec | time out: 2 events; avg 151.783749ms - 3.27734/sec | failed: 2 events; avg 52.227523ms - 3.27734/sec 2023-03-06T16:34:46.872Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #120 for future & fallible event' TIMED OUT after 151.961409ms 2023-03-06T16:34:46.872Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #120 for future & fallible event' ended after running for 610.25486ms -- stats: | ok: 2 events; avg 100.778013ms - 3.27732/sec | time out: 2 events; avg 151.784718ms - 3.27732/sec | failed: 2 events; avg 52.231103ms - 3.27732/sec 2023-03-06T16:34:46.872Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #121 for future & fallible event' TIMED OUT after 151.963067ms 2023-03-06T16:34:46.872Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #121 for future & fallible event' ended after running for 610.258037ms -- stats: | ok: 2 events; avg 100.77621ms - 3.27730/sec | time out: 2 events; avg 151.785269ms - 3.27730/sec | failed: 2 events; avg 52.234568ms - 3.27730/sec ok <0.621s> test multi::tests::undegradable_latencies ... 2023-03-06T16:34:46.875Z 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): 9.048µs 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #0)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #1)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #2)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #3)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #4)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #5)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #6)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #7)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #8)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #9)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #10)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #11)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #12)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #13)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #14)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #15)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #16)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #17)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #18)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #19)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #20)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #21)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #22)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #23)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #24)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #25)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #26)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #27)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #28)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #29)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #30)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #31)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #32)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #33)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #34)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #35)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #36)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #37)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #38)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #39)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #40)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #41)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #42)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #43)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #44)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #45)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #46)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #47)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #48)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #49)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #50)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #51)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #52)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #53)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #54)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #55)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #56)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #57)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #58)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #59)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #60)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #61)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #62)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #63)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #64)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #65)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #66)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #67)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #68)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #69)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #70)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #71)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #72)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #73)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #74)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #75)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #76)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #77)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #78)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #79)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #80)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #81)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #82)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #83)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #84)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #85)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #86)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #87)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #88)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #89)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #90)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #91)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #92)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #93)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #94)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #95)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #96)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #97)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #98)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #99)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #100)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #101)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #102)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #103)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #104)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #105)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #106)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #107)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #108)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #109)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #110)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #111)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #112)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #113)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #114)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #115)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #116)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #117)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #118)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #119)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #120)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #121)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #122)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #123)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #124)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #125)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #126)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #127)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #128)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #129)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #130)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #131)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #132)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #133)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #134)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #135)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #136)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #137)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #138)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #139)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #140)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #141)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #142)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #143)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #144)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #145)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #146)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #147)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #148)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #149)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #150)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #151)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #152)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #153)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #154)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #155)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #156)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #157)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #158)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #159)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #160)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #161)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #162)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #163)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #164)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #165)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #166)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #167)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #168)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #169)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #170)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #171)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #172)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #173)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #174)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #175)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #176)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #177)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #178)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #179)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #180)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #181)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #182)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #183)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #184)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #185)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #186)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #187)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #188)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #189)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #190)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #191)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #192)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #193)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #194)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #195)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #196)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #197)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #198)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #199)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #200)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #201)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #202)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #203)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #204)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #205)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #206)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #207)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #208)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #209)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #210)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #211)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #212)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #213)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #214)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #215)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #216)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #217)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.875Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #218)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #219)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #220)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #221)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #222)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #223)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #224)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #225)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #226)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #227)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #228)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #229)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #230)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #231)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #232)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #233)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #234)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #235)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #236)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #237)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #238)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #239)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #240)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #241)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #242)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #243)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #244)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #245)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #246)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #247)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #248)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #249)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #250)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #251)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #252)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #253)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #254)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:34:46.876Z 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: 297.677µs 3. Time to produce & consume another SIMPLE event (with lots of -- 256 -- sleeping Multi Tokio tasks): 778ns 2023-03-06T16:34:46.876Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIMPLE: solo pipeline' ended after running for 579.57µs -- stats: | ok: 2 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #0)' ended after running for 4.599358ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #1)' ended after running for 4.607921ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #2)' ended after running for 4.608759ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #3)' ended after running for 4.609564ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #4)' ended after running for 4.610085ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #5)' ended after running for 4.610744ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #6)' ended after running for 4.612215ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #7)' ended after running for 4.613097ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #8)' ended after running for 4.613714ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #9)' ended after running for 4.61425ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #10)' ended after running for 4.614861ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #11)' ended after running for 4.615524ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #12)' ended after running for 4.615981ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #13)' ended after running for 4.616485ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #14)' ended after running for 4.617165ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #15)' ended after running for 4.617765ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #16)' ended after running for 4.618803ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #17)' ended after running for 4.619416ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #18)' ended after running for 4.619945ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #19)' ended after running for 4.620555ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #20)' ended after running for 4.621192ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #21)' ended after running for 4.621844ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #22)' ended after running for 4.622644ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #23)' ended after running for 4.623298ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #24)' ended after running for 4.623819ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #25)' ended after running for 4.6244ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #26)' ended after running for 4.625219ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #27)' ended after running for 4.625854ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #28)' ended after running for 4.626379ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #29)' ended after running for 4.626901ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #30)' ended after running for 4.627833ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #31)' ended after running for 4.628389ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #32)' ended after running for 4.62851ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #33)' ended after running for 4.629108ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #34)' ended after running for 4.62967ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #35)' ended after running for 4.630237ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #36)' ended after running for 4.630829ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #37)' ended after running for 4.631395ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #38)' ended after running for 4.631834ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #39)' ended after running for 4.632396ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #40)' ended after running for 4.632955ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #41)' ended after running for 4.633457ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #42)' ended after running for 4.634031ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #43)' ended after running for 4.634615ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #44)' ended after running for 4.635119ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #45)' ended after running for 4.635722ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #46)' ended after running for 4.636631ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #47)' ended after running for 4.637381ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #48)' ended after running for 4.637961ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #49)' ended after running for 4.638779ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #50)' ended after running for 4.639191ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #51)' ended after running for 4.639737ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #52)' ended after running for 4.640332ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #53)' ended after running for 4.640923ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #54)' ended after running for 4.641206ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #55)' ended after running for 4.641799ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #56)' ended after running for 4.642359ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #57)' ended after running for 4.643092ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #58)' ended after running for 4.644026ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #59)' ended after running for 4.644555ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #60)' ended after running for 4.645163ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #61)' ended after running for 4.561114ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #62)' ended after running for 4.563111ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #63)' ended after running for 4.563285ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #64)' ended after running for 4.563597ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #65)' ended after running for 4.564623ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #66)' ended after running for 4.565173ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #67)' ended after running for 4.565792ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #68)' ended after running for 4.56648ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #69)' ended after running for 4.566999ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #70)' ended after running for 4.567776ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #71)' ended after running for 4.568312ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #72)' ended after running for 4.568818ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #73)' ended after running for 4.56938ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #74)' ended after running for 4.569803ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #75)' ended after running for 4.570434ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #76)' ended after running for 4.571177ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #77)' ended after running for 4.571745ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #78)' ended after running for 4.572283ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #79)' ended after running for 4.572759ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #80)' ended after running for 4.573235ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #81)' ended after running for 4.573939ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #82)' ended after running for 4.574735ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #83)' ended after running for 4.5753ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #84)' ended after running for 4.575966ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #85)' ended after running for 4.576543ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #86)' ended after running for 4.577498ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #87)' ended after running for 4.578086ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #88)' ended after running for 4.578672ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #89)' ended after running for 4.579457ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #90)' ended after running for 4.579925ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #91)' ended after running for 4.580532ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #92)' ended after running for 4.581289ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #93)' ended after running for 4.581867ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #94)' ended after running for 4.58247ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #95)' ended after running for 4.583132ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #96)' ended after running for 4.583653ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #97)' ended after running for 4.584279ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #98)' ended after running for 4.585328ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #99)' ended after running for 4.585982ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #100)' ended after running for 4.586543ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #101)' ended after running for 4.587392ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #102)' ended after running for 4.588023ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #103)' ended after running for 4.588684ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #104)' ended after running for 4.589152ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #105)' ended after running for 4.58983ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #106)' ended after running for 4.590435ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #107)' ended after running for 4.590948ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #108)' ended after running for 4.591649ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #109)' ended after running for 4.591864ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #110)' ended after running for 4.592406ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #111)' ended after running for 4.593176ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #112)' ended after running for 4.593746ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #113)' ended after running for 4.594357ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #114)' ended after running for 4.594977ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #115)' ended after running for 4.595581ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #116)' ended after running for 4.596346ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #117)' ended after running for 4.597936ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #118)' ended after running for 4.598825ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #119)' ended after running for 4.599474ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #120)' ended after running for 4.600079ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #121)' ended after running for 4.600681ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #122)' ended after running for 4.600944ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #123)' ended after running for 4.601559ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #124)' ended after running for 4.601894ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #125)' ended after running for 4.602576ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #126)' ended after running for 4.603588ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #127)' ended after running for 4.604135ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #128)' ended after running for 4.604754ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #129)' ended after running for 4.605325ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #130)' ended after running for 4.605995ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #131)' ended after running for 4.606585ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #132)' ended after running for 4.60724ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #133)' ended after running for 4.607958ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #134)' ended after running for 4.608595ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #135)' ended after running for 4.609212ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #136)' ended after running for 4.609847ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #137)' ended after running for 4.610458ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #138)' ended after running for 4.611013ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #139)' ended after running for 4.611572ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #140)' ended after running for 4.612259ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #141)' ended after running for 4.612894ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #142)' ended after running for 4.613607ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #143)' ended after running for 4.614208ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #144)' ended after running for 4.615121ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #145)' ended after running for 4.615656ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #146)' ended after running for 4.616537ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #147)' ended after running for 4.617139ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #148)' ended after running for 4.617753ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #149)' ended after running for 4.618368ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #150)' ended after running for 4.618996ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #151)' ended after running for 4.619588ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #152)' ended after running for 4.620263ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #153)' ended after running for 4.620782ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #154)' ended after running for 4.621419ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #155)' ended after running for 4.62205ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #156)' ended after running for 4.622626ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #157)' ended after running for 4.623197ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #158)' ended after running for 4.624003ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #159)' ended after running for 4.624614ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #160)' ended after running for 4.625277ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #161)' ended after running for 4.625903ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #162)' ended after running for 4.626454ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #163)' ended after running for 4.627131ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #164)' ended after running for 4.628231ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #165)' ended after running for 4.628824ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #166)' ended after running for 4.629447ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #167)' ended after running for 4.629991ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #168)' ended after running for 4.63058ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #169)' ended after running for 4.631072ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #170)' ended after running for 4.63167ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #171)' ended after running for 4.632229ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #172)' ended after running for 4.632754ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #173)' ended after running for 4.633312ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #174)' ended after running for 4.633941ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #175)' ended after running for 4.634469ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #176)' ended after running for 4.635135ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #177)' ended after running for 4.635592ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #178)' ended after running for 4.636186ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #179)' ended after running for 4.636769ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #180)' ended after running for 4.63736ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #181)' ended after running for 4.613432ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #182)' ended after running for 4.608412ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #183)' ended after running for 4.605553ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #184)' ended after running for 4.605037ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #185)' ended after running for 4.604588ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #186)' ended after running for 4.604429ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #187)' ended after running for 4.604912ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #188)' ended after running for 4.605538ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #189)' ended after running for 4.608178ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #190)' ended after running for 4.609296ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #191)' ended after running for 4.609887ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #192)' ended after running for 4.610458ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #193)' ended after running for 4.611006ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #194)' ended after running for 4.611548ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #195)' ended after running for 4.612124ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #196)' ended after running for 4.612757ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #197)' ended after running for 4.613331ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #198)' ended after running for 4.613891ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #199)' ended after running for 4.614462ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #200)' ended after running for 4.615196ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #201)' ended after running for 4.61418ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #202)' ended after running for 4.614693ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #203)' ended after running for 4.615318ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #204)' ended after running for 4.615951ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #205)' ended after running for 4.616497ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #206)' ended after running for 4.6171ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #207)' ended after running for 4.617698ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #208)' ended after running for 4.618349ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #209)' ended after running for 4.618873ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #210)' ended after running for 4.619477ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #211)' ended after running for 4.620018ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #212)' ended after running for 4.620618ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #213)' ended after running for 4.621205ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #214)' ended after running for 4.622206ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #215)' ended after running for 4.622785ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #216)' ended after running for 4.623421ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #217)' ended after running for 4.624042ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #218)' ended after running for 4.624649ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #219)' ended after running for 4.625281ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #220)' ended after running for 4.625922ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #221)' ended after running for 4.626475ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #222)' ended after running for 4.627222ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #223)' ended after running for 4.627815ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #224)' ended after running for 4.628421ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #225)' ended after running for 4.628666ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #226)' ended after running for 4.629291ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #227)' ended after running for 4.629824ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #228)' ended after running for 4.630427ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #229)' ended after running for 4.63098ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #230)' ended after running for 4.631623ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #231)' ended after running for 4.632237ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #232)' ended after running for 4.632859ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #233)' ended after running for 4.633465ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #234)' ended after running for 4.634099ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #235)' ended after running for 4.634663ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #236)' ended after running for 4.635353ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #237)' ended after running for 4.635906ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #238)' ended after running for 4.636579ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #239)' ended after running for 4.637899ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #240)' ended after running for 4.638594ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #241)' ended after running for 4.639161ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #242)' ended after running for 4.639828ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #243)' ended after running for 4.640401ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #244)' ended after running for 4.640475ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #245)' ended after running for 4.64105ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #246)' ended after running for 4.641804ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #247)' ended after running for 4.64234ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #248)' ended after running for 4.643018ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #249)' ended after running for 4.643303ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #250)' ended after running for 4.643912ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #251)' ended after running for 4.644461ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #252)' ended after running for 4.645068ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #253)' ended after running for 4.645629ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #254)' ended after running for 4.646332ms -- stats: | ok: 1 events 2023-03-06T16:34:46.880Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #255)' ended after running for 4.646934ms -- stats: | ok: 1 events ok <0.008s> 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 <6.990s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <13.045s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::multiple_producers_single_consumer ... Producing already stopped but we are no longer consuming anything. So far, 4049890; wanted: 4096000 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 1107 reported stack was full CONSUMPTION: 4096000 successful, 24 reported stack was empty ok <24.539s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::single_producer_multiple_consumers ... Production already stopped but we are no longer consuming anything. So far, 4047951; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4048066; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4047951; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4047951; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4048639; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4048701; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4048722; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4048742; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4048758; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4048977; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4048977; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4049201; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4055491; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4056660; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4048209; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4058191; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4059714; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4059774; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057114; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4071828; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4071831; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4072060; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4077921; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4078024; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057141; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4084001; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4084019; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057241; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4090011; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4090353; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057162; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057269; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4059718; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057211; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4059718; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4071801; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4071801; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4071798; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4089988; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4083996; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4071800; wanted: 4096000 Production already stopped but we are no longer consuming anything. So far, 4057189; wanted: 4096000 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 0 reports of 'full container' CONSUMPTIONS: 4096000 successful, 2701 reports of 'empty container' ok <59.777s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::test_blocking ... Asserting pass 'virgin' Blocking on empty (from a virgin container): 100.259129ms Blocking on empty (again): 100.060251ms Non-Blocking 'try_consume()': 54ns Waiting to dequeue: 50.214285ms Blocking 'produce()' (won't block as there are free slots): 374ns Blocking on full: 100.059924ms Blocking on full (again): 100.260456ms Non-Blocking 'try_produce()': 112ns Waiting to 'produce()': 50.225255ms Blocking 'consume()' (won't block as there are elements): 168ns Asserting pass 'non-virgin' Blocking on empty (from a non-virgin container): 100.086018ms Blocking on empty (again): 100.321997ms Non-Blocking 'try_consume()': 52ns Waiting to dequeue: 50.437444ms Blocking 'produce()' (won't block as there are free slots): 372ns Blocking on full: 100.064157ms Blocking on full (again): 100.076699ms Non-Blocking 'try_produce()': 428ns Waiting to 'produce()': 50.442958ms Blocking 'consume()' (won't block as there are elements): 167ns Asserting pass 'promiscuous' Blocking on empty (from a promiscuous container): 100.25619ms Blocking on empty (again): 100.063286ms Non-Blocking 'try_consume()': 51ns Waiting to dequeue: 50.423189ms Blocking 'produce()' (won't block as there are free slots): 371ns Blocking on full: 100.096075ms Blocking on full (again): 100.253592ms Non-Blocking 'try_produce()': 135ns Waiting to 'produce()': 50.392687ms Blocking 'consume()' (won't block as there are elements): 165ns ok <1.504s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::basic_queue_use_cases ... ok <0.161s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <11.826s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.630s> 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: 218014, enqueuer_tail: 273913, dequeuer_tail: 273912 CONTENTS: 55899 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 273913 successful, 185 reported queue was full CONSUMPTION: 218014 successful, 531888 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 746544, enqueuer_tail: 746544, dequeuer_tail: 746544 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 746544 successful, 508 reported queue was full CONSUMPTION: 746544 successful, 554404 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 976185, enqueuer_tail: 1023120, dequeuer_tail: 1023119 CONTENTS: 46935 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 1023120 successful, 692 reported queue was full CONSUMPTION: 976185 successful, 1072003 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 1487751, enqueuer_tail: 1535331, dequeuer_tail: 1507575 CONTENTS: 47580 elements, 65536 buffer -- concurrent_enqueuers: 19 PRODUCTION: 1535324 successful, 922 reported queue was full CONSUMPTION: 1487751 successful, 1072003 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 1751665, enqueuer_tail: 1751665, dequeuer_tail: 1751665 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 1751665 successful, 1063 reported queue was full CONSUMPTION: 1751665 successful, 1615607 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 1989373, enqueuer_tail: 1989373, dequeuer_tail: 1989373 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 1989373 successful, 1248 reported queue was full CONSUMPTION: 1989373 successful, 2164006 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2281511, enqueuer_tail: 2281511, dequeuer_tail: 2281511 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 2281511 successful, 1387 reported queue was full CONSUMPTION: 2281511 successful, 2603591 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2423004, enqueuer_tail: 2423004, dequeuer_tail: 2423004 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 2423004 successful, 1481 reported queue was full CONSUMPTION: 2423004 successful, 3344511 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2640676, enqueuer_tail: 2640676, dequeuer_tail: 2640676 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 2640676 successful, 1666 reported queue was full CONSUMPTION: 2640676 successful, 3932982 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2871331, enqueuer_tail: 2871331, dequeuer_tail: 2871331 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 2871331 successful, 1851 reported queue was full CONSUMPTION: 2871331 successful, 4495487 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2948307, enqueuer_tail: 2983436, dequeuer_tail: 2963885 CONTENTS: 35129 elements, 65536 buffer -- concurrent_enqueuers: 19 PRODUCTION: 2983429 successful, 1898 reported queue was full CONSUMPTION: 2948307 successful, 5330366 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2948307, enqueuer_tail: 2983441, dequeuer_tail: 2963885 CONTENTS: 35134 elements, 65536 buffer -- concurrent_enqueuers: 21 PRODUCTION: 2983429 successful, 1898 reported queue was full CONSUMPTION: 2948307 successful, 5330366 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 3326887, enqueuer_tail: 3326887, dequeuer_tail: 3326887 CONTENTS: 0 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 3326887 successful, 2220 reported queue was full CONSUMPTION: 3326887 successful, 5632006 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 3709121, enqueuer_tail: 3765018, dequeuer_tail: 3765017 CONTENTS: 55897 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 3765018 successful, 2449 reported queue was full CONSUMPTION: 3709120 successful, 5835413 reported queue was empty Producing already stopped but we are no longer consuming anything. So far, 4095954; wanted: 4096000 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 2633 reported stack was full CONSUMPTION: 4096000 successful, 5835414 reported stack was empty ok <0.888s> 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, 486217973 reports of 'empty container' ok <12.507s> 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 <14.058s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.366s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_single_consumer ... Producing already stopped but we are no longer consuming anything. So far, 4095986; wanted: 4096000 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 1153 reported stack was full CONSUMPTION: 4096000 successful, 13 reported stack was empty ok <25.377s> test ogre_std::ogre_queues::blocking_queue::tests::single_producer_multiple_consumers ... Production already stopped but we are no longer consuming anything. So far, 4096002; wanted: 4096000 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, 41 reports of 'full container' CONSUMPTIONS: 4096000 successful, 2029 reports of 'empty container' ok <44.158s> test ogre_std::ogre_queues::blocking_queue::tests::test_blocking ... Asserting pass 'virgin' Blocking on empty (from a virgin queue): 100.251477ms Blocking on empty (again): 100.291425ms Non-Blocking 'try_dequeue()': 171ns Blocking enqueueing (won't block as there are free slots): 243ns Blocking on full: 100.294756ms Blocking on full (again): 100.293706ms Non-Blocking 'try_enqueue()': 181ns Blocking dequeueing (won't block as there are elements): 231ns Asserting pass 'non-virgin' Blocking on empty (from a non-virgin queue): 100.305047ms Blocking on empty (again): 100.319086ms Non-Blocking 'try_dequeue()': 169ns Blocking enqueueing (won't block as there are free slots): 238ns Blocking on full: 100.249166ms Blocking on full (again): 100.378377ms Non-Blocking 'try_enqueue()': 231ns Blocking dequeueing (won't block as there are elements): 229ns Asserting pass 'promiscuous' Blocking on empty (from a promiscuous queue): 100.337654ms Blocking on empty (again): 100.121535ms Non-Blocking 'try_dequeue()': 170ns Blocking enqueueing (won't block as there are free slots): 242ns Blocking on full: 100.098095ms Blocking on full (again): 100.256311ms Non-Blocking 'try_enqueue()': 237ns Blocking dequeueing (won't block as there are elements): 226ns 'interrupt()' causing blocking operations to return immediately: 447ns ok <1.203s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::basic_queue_use_cases ... ok <0.000s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <17.053s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <4.264s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::multiple_producers_single_consumer ... 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 186617009 reported stack was full CONSUMPTION: 4096000 successful, 1128 reported stack was empty ok <128.472s> 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, 196341315 reports of 'empty container' ok <139.486s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::basic_queue_use_cases ... ok <0.000s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <12.892s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.023s> 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, 180873892 reported stack was full CONSUMPTION: 4096000 successful, 1070 reported stack was empty ok <55.316s> 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, 172684168 reports of 'empty container' ok <55.239s> 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 <12.810s> test ogre_std::ogre_stacks::blocking_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.166s> 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 <57.255s> 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 <58.183s> 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.914s> test ogre_std::ogre_stacks::non_blocking_atomic_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <4.696s> 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, 196582052 reported stack was full CONSUMPTION: 4096000 successful, 1053 reported stack was empty ok <119.532s> 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, 202548707 reports of 'empty container' ok <113.502s> test ogre_std::ogre_stacks::non_blocking_parking_lot_stack::tests::basic_stack_use_cases ... ok <0.000s> test ogre_std::ogre_stacks::non_blocking_parking_lot_stack::tests::multiple_producers_and_consumers_all_in_and_out ... ok <12.473s> test ogre_std::ogre_stacks::non_blocking_parking_lot_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.613s> 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, 189272024 reported stack was full CONSUMPTION: 4096000 successful, 661 reported stack was empty ok <56.670s> 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, 172609446 reports of 'empty container' ok <52.895s> test ogre_std::reference_counted_buffer_allocator::test::excessive_ref_decs - should panic ... 2023-03-06T16:53:47.372Z 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 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace ok <0.000s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_logs_and_metrics ... 2023-03-06T16:53:47.372Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:53:47.372Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 7.748µs -- stats: | ok: 2 events ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 22.784µs ago Execution Start: 4.028µs after creation Execution Finish: 11.776µs after creation OK elements count: 2; OK elements average Future resolution time: -1s -- verify these values against the "executor closed" message TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- verify these values against the "executor closed" message FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- verify these values against the "executor closed" message ok <0.000s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_logs_and_no_metrics ... 2023-03-06T16:53:47.373Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Non-Futures / Non-Fallible Items & NO Metrics 2023-03-06T16:53:47.373Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 6.39µs -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 17.308µs ago Execution Start: 3.018µs after creation Execution Finish: 9.408µs after creation OK elements count: 0; OK elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message ok <0.000s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_metrics_and_no_logs ... ### Stats assertions for Stream pipeline executor named 'executor with metrics & NO logs' (Logs? false; Metrics? true) #### Creation time: 9.19µs ago Execution Start: 2.939µs after creation Execution Finish: 3.237µs after creation OK elements count: 2; OK elements average Future resolution time: -1s -- logs are DISABLED TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- logs are DISABLED FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- logs are DISABLED ok <0.000s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_no_logs_and_no_metrics ... ### Stats assertions for Stream pipeline executor named 'executor with NO logs & NO metrics' (Logs? false; Metrics? false) #### Creation time: 8.709µs ago Execution Start: 2.296µs after creation Execution Finish: 2.598µs after creation OK elements count: 0; OK elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- metrics are DISABLED -- logs are DISABLED ok <0.000s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_logs_and_metrics ... 2023-03-06T16:53:47.373Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Futures (NO timeouts) / Fallible Items & Metrics 2023-03-06T16:53:47.373Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"17"' in 45ns 2023-03-06T16:53:47.525Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"19"' in 32ns 2023-03-06T16:53:47.677Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 304.038736ms -- stats: | ok: 4 events; avg 76.001689ms - 13.15622/sec | failed: 2 events; avg 38ns - 6.57811/sec ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 304.07041ms ago Execution Start: 3.148µs after creation Execution Finish: 304.041884ms after creation OK elements count: 4; OK elements average Future resolution time: 0.07600169s -- 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.000000038499998s -- verify these values against the "executor closed" message ok <0.304s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_logs_and_no_metrics ... 2023-03-06T16:53:47.677Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Futures (NO timeouts) / Fallible Items & NO Metrics 2023-03-06T16:53:47.677Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"17"' 2023-03-06T16:53:47.829Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"19"' 2023-03-06T16:53:47.980Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 303.02621ms -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 303.055341ms ago Execution Start: 2.963µs after creation Execution Finish: 303.029173ms after creation OK elements count: 0; OK elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message ok <0.303s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_metrics_and_no_logs ... ### Stats assertions for Stream pipeline executor named 'executor with metrics & NO logs' (Logs? false; Metrics? true) #### Creation time: 302.642316ms ago Execution Start: 3.937µs after creation Execution Finish: 302.625818ms after creation OK elements count: 4; OK elements average Future resolution time: 0.07565321s -- 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.0000001045s -- logs are DISABLED ok <0.303s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_no_logs_and_no_metrics ... ### Stats assertions for Stream pipeline executor named 'executor with NO logs & NO metrics' (Logs? false; Metrics? false) #### Creation time: 304.087309ms ago Execution Start: 4.049µs after creation Execution Finish: 304.070723ms 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.304s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_logs_and_metrics ... 2023-03-06T16:53:48.587Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Futures (with timeouts of 100ms) / Fallible Items & Metrics 2023-03-06T16:53:48.587Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"17"' in 100ns 2023-03-06T16:53:48.689Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & metrics' TIMED OUT after 101.453679ms 2023-03-06T16:53:48.689Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"19"' in 103ns 2023-03-06T16:53:48.790Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & metrics' TIMED OUT after 100.760118ms 2023-03-06T16:53:48.790Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 202.28868ms -- stats: | ok: 2 events; avg 726ns - 9.88686/sec | time out: 2 events; avg 101.106897ms - 9.88686/sec | failed: 2 events; avg 101ns - 9.88686/sec ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 202.327726ms ago Execution Start: 4.018µs after creation Execution Finish: 202.292698ms after creation OK elements count: 2; OK elements average Future resolution time: 0.0000007255s -- verify these values against the "executor closed" message TIMED OUT elements count: 2; TIMED OUT elements average Future resolution time: 0.1011069s -- verify these values against the "executor closed" message FAILED elements count: 2; FAILED elements average Future resolution time: 0.0000001015s -- verify these values against the "executor closed" message ok <0.202s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_logs_and_no_metrics ... 2023-03-06T16:53:48.790Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Futures (with timeouts of 100ms) / Fallible Items & NO Metrics 2023-03-06T16:53:48.790Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"17"' 2023-03-06T16:53:48.892Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & NO metrics' TIMED OUT 2023-03-06T16:53:48.892Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"19"' 2023-03-06T16:53:48.993Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & NO metrics' TIMED OUT 2023-03-06T16:53:48.993Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 202.72726ms -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 202.744733ms ago Execution Start: 3.894µs after creation Execution Finish: 202.731154ms after creation OK elements count: 0; OK elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message ok <0.203s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_metrics_and_no_logs ... ### Stats assertions for Stream pipeline executor named 'executor with metrics & NO logs' (Logs? false; Metrics? true) #### Creation time: 202.59015ms ago Execution Start: 4.023µs after creation Execution Finish: 202.56768ms after creation OK elements count: 2; OK elements average Future resolution time: 0.0000006615s -- logs are DISABLED TIMED OUT elements count: 2; TIMED OUT elements average Future resolution time: 0.10127807s -- logs are DISABLED FAILED elements count: 2; FAILED elements average Future resolution time: 0.0000001035s -- logs are DISABLED ok <0.203s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_no_logs_and_no_metrics ... ### Stats assertions for Stream pipeline executor named 'executor with NO logs & NO metrics' (Logs? false; Metrics? false) #### Creation time: 202.186759ms ago Execution Start: 3.899µs after creation Execution Finish: 202.170622ms 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.202s> test uni::channels::tests::atomic_mpmc_queue_doc_test ... receiving: Some("a") ok <0.000s> test uni::channels::tests::atomic_mpmc_queue_dropping ... Dropping the channel before the stream consumes the element: receiving: Some("a") Dropping the stream before the channel produces something, then another stream is created to consume the element: receiving: Some("a") ok <0.000s> test uni::channels::tests::atomic_mpmc_queue_parallel_streams ... receiving on stream #0: Some(0) receiving on stream #1: Some(1) receiving on stream #2: Some(2) receiving on stream #3: Some(3) receiving on stream #4: Some(4) receiving on stream #5: Some(5) receiving on stream #6: Some(6) receiving on stream #7: Some(7) receiving on stream #8: Some(8) receiving on stream #9: Some(9) receiving on stream #10: Some(10) receiving on stream #11: Some(11) receiving on stream #12: Some(12) receiving on stream #13: Some(13) receiving on stream #14: Some(14) receiving on stream #15: Some(15) receiving on stream #16: Some(16) receiving on stream #17: Some(17) receiving on stream #18: Some(18) receiving on stream #19: Some(19) receiving on stream #20: Some(20) receiving on stream #21: Some(21) receiving on stream #22: Some(22) receiving on stream #23: Some(23) receiving on stream #24: Some(24) receiving on stream #25: Some(25) receiving on stream #26: Some(26) receiving on stream #27: Some(27) receiving on stream #28: Some(28) receiving on stream #29: Some(29) receiving on stream #30: Some(30) receiving on stream #31: Some(31) receiving on stream #32: Some(32) receiving on stream #33: Some(33) receiving on stream #34: Some(34) receiving on stream #35: Some(35) receiving on stream #36: Some(36) receiving on stream #37: Some(37) receiving on stream #38: Some(38) receiving on stream #39: Some(39) receiving on stream #40: Some(40) receiving on stream #41: Some(41) receiving on stream #42: Some(42) receiving on stream #43: Some(43) receiving on stream #44: Some(44) receiving on stream #45: Some(45) receiving on stream #46: Some(46) receiving on stream #47: Some(47) receiving on stream #48: Some(48) receiving on stream #49: Some(49) receiving on stream #50: Some(50) receiving on stream #51: Some(51) receiving on stream #52: Some(52) receiving on stream #53: Some(53) receiving on stream #54: Some(54) receiving on stream #55: Some(55) receiving on stream #56: Some(56) receiving on stream #57: Some(57) receiving on stream #58: Some(58) receiving on stream #59: Some(59) receiving on stream #60: Some(60) receiving on stream #61: Some(61) receiving on stream #62: Some(62) receiving on stream #63: Some(63) receiving on stream #64: Some(64) receiving on stream #65: Some(65) receiving on stream #66: Some(66) receiving on stream #67: Some(67) receiving on stream #68: Some(68) receiving on stream #69: Some(69) receiving on stream #70: Some(70) receiving on stream #71: Some(71) receiving on stream #72: Some(72) receiving on stream #73: Some(73) receiving on stream #74: Some(74) receiving on stream #75: Some(75) receiving on stream #76: Some(76) receiving on stream #77: Some(77) receiving on stream #78: Some(78) receiving on stream #79: Some(79) receiving on stream #80: Some(80) receiving on stream #81: Some(81) receiving on stream #82: Some(82) receiving on stream #83: Some(83) receiving on stream #84: Some(84) receiving on stream #85: Some(85) receiving on stream #86: Some(86) receiving on stream #87: Some(87) receiving on stream #88: Some(88) receiving on stream #89: Some(89) receiving on stream #90: Some(90) receiving on stream #91: Some(91) receiving on stream #92: Some(92) receiving on stream #93: Some(93) receiving on stream #94: Some(94) receiving on stream #95: Some(95) receiving on stream #96: Some(96) receiving on stream #97: Some(97) receiving on stream #98: Some(98) receiving on stream #99: Some(99) ok <1.119s> 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.120s> test uni::channels::tests::performance_measurements ... TokioMPSC (same task / same thread): 15048027.27/s -- 10485760 items processed in 696.819577ms TokioMPSC (different task / same thread): 14626539.43/s -- 10485760 items processed in 716.899582ms TokioMPSC (different task / different thread): 6261647.80/s -- 10485760 items processed in 1.674600734s AtomicMPMCQueue (same task / same thread): 35139134.67/s -- 10485760 items processed in 298.406893ms AtomicMPMCQueue (different task / same thread): 29187645.40/s -- 10485760 items processed in 359.253371ms AtomicMPMCQueue (different task / different thread): 9329217.74/s -- 10485760 items processed in 1.123969908s OgreMPMCQueue (same task / same thread): 45901451.56/s -- 10485760 items processed in 228.440706ms OgreMPMCQueue (different task / same thread): 9006395.13/s -- 10485760 items processed in 1.164257158s OgreMPMCQueue (different task / different thread): 63128647.04/s -- 10485760 items processed in 166.101453ms ok <6.429s> test uni::channels::tests::tokio_mpsc_queue_doc_test ... receiving: Some("a") ok <0.000s> test uni::tests::async_elements ... 2023-03-06T16:53:58.067Z 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-06T16:53:59.070Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async_elements() Event' ended after running for 1.002086273s -- stats: | ok: 4 events; avg 1.002070785s - 3.99167/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 0 events; avg 0ns - 0.00000/sec ok <1.006s> test uni::tests::demux ... 2023-03-06T16:53:59.074Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:53:59.074Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:53:59.074Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:53:59.076Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO event' ended after running for 2.076028ms -- stats: | ok: 4 events 2023-03-06T16:53:59.177Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR event' ended after running for 102.943685ms -- stats: | ok: 6 events ok <0.107s> test uni::tests::doc_tests ... 2023-03-06T16:53:59.181Z 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-06T16:53:59.184Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() Event' ended after running for 2.287686ms -- stats: | ok: 2 events ok <0.007s> test uni::tests::error_handling ... 2023-03-06T16:53:59.188Z 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-06T16:53:59.188Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'fallible event' yielded ERROR '"BLOW CODE received: 79"' in 120ns ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-06T16:53:59.190Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'fallible event' ended after running for 2.156482ms -- stats: | ok: 3 events; avg 576ns - 1391.15467/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 120ns - 463.71822/sec ok <0.007s> test uni::tests::performance_measurements ... metricfull_non_futures_non_fallible_uni: 24175125.43/s -- 8388608 items processed in 346.99336ms metricless_non_futures_non_fallible_uni: 29247114.66/s -- 8388608 items processed in 286.81831ms par_metricless_non_futures_non_fallible_uni: 6989218.59/s -- 8388608 items processed in 1.200221153s metricfull_futures_fallible_uni: 11528000.88/s -- 8388608 items processed in 727.672394ms metricless_futures_fallible_uni: 20350273.47/s -- 8388608 items processed in 412.21107ms timeoutable_metricfull_futures_fallible_uni: 5766960.61/s -- 6291456 items processed in 1.090948321s timeoutable_metricless_futures_fallible_uni: 8204441.31/s -- 6291456 items processed in 766.835396ms ok <4.832s> test uni::tests::simple_pipeline ... 2023-03-06T16:54:04.027Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'simple_pipeline() Event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:54:04.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'simple_pipeline() Event' ended after running for 2.336895ms -- stats: | ok: 2 events ok <0.007s> test uni::tests::stats ... 2023-03-06T16:54:04.034Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-06T16:54:04.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event' ended after running for 2.102937ms -- stats: | ok: 1 events 2023-03-06T16:54:04.041Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-06T16:54:04.193Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.098879ms 2023-03-06T16:54:04.344Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event' TIMED OUT after 151.096667ms 2023-03-06T16:54:04.497Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.108954ms 2023-03-06T16:54:04.649Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event' TIMED OUT after 151.574519ms 2023-03-06T16:54:04.649Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event' ended after running for 608.198529ms -- stats: | ok: 2 events; avg 101.559862ms - 3.28840/sec | time out: 2 events; avg 151.335597ms - 3.28840/sec | failed: 2 events; avg 51.103916ms - 3.28840/sec ok <0.619s> test result: ok. 90 passed; 0 failed; 8 ignored; 0 measured; 0 filtered out; finished in 1167.71s Doc-tests reactive-mutiny running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s