Compiling reactive-mutiny v0.1.0 (/tmp/reactive-mutiny) warning: unused imports: `Acquire`, `Release` --> src/uni/channels/ogre_mpmc_queue.rs:17:35 | 17 | use std::sync::atomic::Ordering::{Acquire, Relaxed, Release}; | ^^^^^^^ ^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `marker::PhantomData` --> src/multi/multi_builder.rs:10:5 | 10 | marker::PhantomData, | ^^^^^^^^^^^^^^^^^^^ warning: unused import: `futures::future::BoxFuture` --> src/multi/multi_builder.rs:14:5 | 14 | use futures::future::BoxFuture; | ^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: unused import: `uni::MultiPayload` --> src/multi/channels/ogre_mpmc_queue.rs:2:5 | 2 | uni::MultiPayload, | ^^^^^^^^^^^^^^^^^ warning: unused import: `ManuallyDrop` --> src/types.rs:12:16 | 12 | use std::mem::{ManuallyDrop, MaybeUninit}; | ^^^^^^^^^^^^ warning: unused import: `full_sync_queues::NonBlockingQueue` --> src/ogre_std/reference_counted_buffer_allocator.rs:5:9 | 5 | full_sync_queues::NonBlockingQueue, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: unused import: `AtomicU64` --> src/ogre_std/ogre_queues/atomic_queues/atomic_base.rs:6:30 | 6 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ warning: unused import: `std::pin::Pin` --> src/ogre_std/ogre_queues/atomic_queues/atomic_base.rs:9:5 | 9 | use std::pin::Pin; | ^^^^^^^^^^^^^ warning: unused imports: `AtomicU32`, `mem::MaybeUninit` --> src/ogre_std/ogre_queues/atomic_queues/non_blocking_queue.rs:14:20 | 14 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 15 | mem::MaybeUninit, | ^^^^^^^^^^^^^^^^ warning: unused imports: `AtomicU32`, `mem::MaybeUninit` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:14:20 | 14 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 15 | mem::MaybeUninit, | ^^^^^^^^^^^^^^^^ warning: unused import: `std::future::Future` --> src/ogre_std/ogre_queues/full_sync_queues/full_sync_base.rs:7:5 | 7 | use std::future::Future; | ^^^^^^^^^^^^^^^^^^^ warning: unused import: `std::time::Duration` --> src/ogre_std/ogre_queues/full_sync_queues/full_sync_base.rs:12:5 | 12 | use std::time::Duration; | ^^^^^^^^^^^^^^^^^^^ warning: unused imports: `AtomicU32`, `mem::MaybeUninit` --> src/ogre_std/ogre_queues/full_sync_queues/non_blocking_queue.rs:12:20 | 12 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 13 | mem::MaybeUninit, | ^^^^^^^^^^^^^^^^ warning: unused imports: `AtomicU32`, `mem::MaybeUninit` --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:12:20 | 12 | sync::atomic::{AtomicU32,AtomicU64,Ordering::Relaxed}, | ^^^^^^^^^ 13 | mem::MaybeUninit, | ^^^^^^^^^^^^^^^^ warning: unused import: `super::*` --> src/uni/channels/tokio_mpsc.rs:118:9 | 118 | use super::*; | ^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `super::*` --> src/uni/channels/atomic_mpmc_queue.rs:214:9 | 214 | use super::*; | ^^^^^^^^ warning: unused imports: `Acquire`, `Release` --> src/uni/channels/ogre_mpmc_queue.rs:17:35 | 17 | use std::sync::atomic::Ordering::{Acquire, Relaxed, Release}; | ^^^^^^^ ^^^^^^^ warning: unused import: `super::*` --> src/uni/channels/ogre_mpmc_queue.rs:257:9 | 257 | use super::*; | ^^^^^^^^ warning: unused import: `std::io::Write` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:333:9 | 333 | use std::io::Write; | ^^^^^^^^^^^^^^ warning: unused import: `std::time::SystemTime` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:334:9 | 334 | use std::time::SystemTime; | ^^^^^^^^^^^^^^^^^^^^^ warning: unused import: `Duration` --> src/ogre_std/ogre_queues/blocking_queue.rs:350:32 | 350 | use std::time::{SystemTime,Duration}; | ^^^^^^^^ warning: unused import: `OgreQueue` --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:5:9 | 5 | OgreQueue, | ^^^^^^^^^ warning: unused import: `super::super::OgreQueue` --> src/ogre_std/ogre_queues/atomic_queues/atomic_base.rs:3:5 | 3 | use super::super::OgreQueue; | ^^^^^^^^^^^^^^^^^^^^^^^ warning: unused variable: `empty_guard_ref` --> src/ogre_std/ogre_queues/atomic_queues/blocking_queue.rs:264:39 | 264 | fn set_empty_guard_ref(&mut self, empty_guard_ref: &'_ RawMutex) { | ^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_empty_guard_ref` | = note: `#[warn(unused_variables)]` on by default warning: unused variable: `buffer` --> src/ogre_std/ogre_queues/full_sync_queues/full_sync_base.rs:172:56 | 172 | let Self {full_guard, concurrency_guard, tail, buffer, head, empty_guard} = self; | ^^^^^^ help: try ignoring the field: `buffer: _` warning: struct `TokioMPSC` is never constructed --> src/uni/channels/tokio_mpsc.rs:15:12 | 15 | pub struct TokioMPSC { | ^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default warning: associated function `new` is never used --> src/uni/channels/tokio_mpsc.rs:23:12 | 23 | pub fn new() -> Arc>> { | ^^^ warning: associated function `consumer_stream` is never used --> src/uni/channels/tokio_mpsc.rs:31:12 | 31 | pub fn consumer_stream(self: &Arc>>) -> Option> { | ^^^^^^^^^^^^^^^ warning: associated function `send` is never used --> src/uni/channels/tokio_mpsc.rs:58:18 | 58 | pub async fn send(&self, item: ItemType) { | ^^^^ warning: associated function `try_send` is never used --> src/uni/channels/tokio_mpsc.rs:65:12 | 65 | pub fn try_send(&self, item: ItemType) -> bool { | ^^^^^^^^ warning: associated function `zero_copy_try_send` is never used --> src/uni/channels/tokio_mpsc.rs:75:15 | 75 | unsafe fn zero_copy_try_send(&self, _item_builder: impl FnOnce(&mut ItemType)) { | ^^^^^^^^^^^^^^^^^^ warning: associated function `flush` is never used --> src/uni/channels/tokio_mpsc.rs:79:18 | 79 | pub async fn flush(&self, timeout: Duration) -> u32 { | ^^^^^ warning: associated function `end_all_streams` is never used --> src/uni/channels/tokio_mpsc.rs:99:18 | 99 | pub async fn end_all_streams(&self, timeout: Duration) -> u32 { | ^^^^^^^^^^^^^^^ warning: associated function `pending_items_count` is never used --> src/uni/channels/tokio_mpsc.rs:108:12 | 108 | pub fn pending_items_count(&self) -> u32 { | ^^^^^^^^^^^^^^^^^^^ warning: associated function `consumer_stream` is never used --> src/uni/channels/atomic_mpmc_queue.rs:46:12 | 46 | pub fn consumer_stream(self: &Arc>>) -> Option> { | ^^^^^^^^^^^^^^^ warning: associated function `wake_all_streams` is never used --> src/uni/channels/atomic_mpmc_queue.rs:116:8 | 116 | fn wake_all_streams(&self) { | ^^^^^^^^^^^^^^^^ warning: associated function `new` is never used --> src/uni/channels/atomic_mpmc_queue.rs:146:12 | 146 | pub fn new() -> Arc>> { | ^^^ warning: associated function `flush` is never used --> src/uni/channels/atomic_mpmc_queue.rs:171:18 | 171 | pub async fn flush(&self, timeout: Duration) -> u32 { | ^^^^^ warning: associated function `end_all_streams` is never used --> src/uni/channels/atomic_mpmc_queue.rs:192:18 | 192 | pub async fn end_all_streams(&self, timeout: Duration) -> u32 { | ^^^^^^^^^^^^^^^ warning: associated function `pending_items_count` is never used --> src/uni/channels/atomic_mpmc_queue.rs:204:12 | 204 | pub fn pending_items_count(&self) -> u32 { | ^^^^^^^^^^^^^^^^^^^ warning: associated function `reset` is never used --> src/incremental_averages.rs:82:8 | 82 | fn reset(&self, weight: u32) { | ^^^^^ warning: associated function `split` is never used --> src/incremental_averages.rs:87:8 | 87 | fn split(&self) -> &IncrementalAveragePair32 { | ^^^^^ warning: associated function `atomic` is never used --> src/incremental_averages.rs:92:8 | 92 | fn atomic(&self) -> &AtomicU64 { | ^^^^^^ warning: type alias `ReferenceCountedAllocator` is never used --> src/ogre_std/reference_counted_buffer_allocator.rs:52:10 | 52 | pub type ReferenceCountedAllocator = ReferenceCountedNonBlockingCustomStackAllocator src/ogre_std/reference_counted_buffer_allocator.rs:55:10 | 55 | pub type ReferenceCountedBlockingAllocator = ReferenceCountedNonBlockingCustomStackAllocator src/ogre_std/ogre_queues/full_sync_queues/full_sync_base.rs:19:5 | 15 | pub struct FullSyncBase src/ogre_std/ogre_queues/full_sync_queues/full_sync_base.rs:171:12 | 171 | pub fn debug_info(&self) -> String { | ^^^^^^^^^^ warning: struct `AsyncBase` is never constructed --> src/ogre_std/ogre_queues/async_queues/async_base.rs:12:12 | 12 | pub struct AsyncBase src/ogre_std/ogre_queues/async_queues/async_base.rs:134:10 | 134 | async fn lock(raw_mutex: &AtomicBool) { | ^^^^ warning: function `unlock` is never used --> src/ogre_std/ogre_queues/async_queues/async_base.rs:163:4 | 163 | fn unlock(raw_mutex: &AtomicBool) { | ^^^^^^ warning: associated function `new` is never used --> src/ogre_std/ogre_queues/async_queues/async_base.rs:39:12 | 39 | pub fn new() -> Self { | ^^^ warning: associated function `enqueue` is never used --> src/ogre_std/ogre_queues/async_queues/async_base.rs:51:18 | 51 | pub async fn enqueue src/ogre_std/ogre_queues/async_queues/async_base.rs:88:18 | 88 | pub async fn dequeue ReportEmptyFnFuture, | ^^^^^^^ warning: associated function `len` is never used --> src/ogre_std/ogre_queues/async_queues/async_base.rs:121:12 | 121 | pub fn len(&self) -> usize { | ^^^ warning: associated function `buffer_size` is never used --> src/ogre_std/ogre_queues/async_queues/async_base.rs:125:12 | 125 | pub fn buffer_size(&self) -> usize { | ^^^^^^^^^^^ warning: struct `NonBlockingQueue` is never constructed --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:20:12 | 20 | pub struct NonBlockingQueue src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:42:8 | 42 | fn new>(queue_name: IntoString) -> Pin> where Self: Sized { | ^^^ warning: associated function `enqueue` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:54:18 | 54 | pub async fn enqueue(&self, element: SlotType) -> bool { | ^^^^^^^ warning: associated function `dequeue` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:77:18 | 77 | pub async fn dequeue(&self) -> Option { | ^^^^^^^ warning: associated function `len` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:97:12 | 97 | pub fn len(&self) -> usize { | ^^^ warning: associated function `buffer_size` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:101:12 | 101 | pub fn buffer_size(&self) -> usize { | ^^^^^^^^^^^ warning: associated function `debug_enabled` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:105:12 | 105 | pub fn debug_enabled(&self) -> bool { | ^^^^^^^^^^^^^ warning: associated function `metrics_enabled` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:109:12 | 109 | pub fn metrics_enabled(&self) -> bool { | ^^^^^^^^^^^^^^^ warning: associated function `queue_name` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:113:12 | 113 | pub fn queue_name(&self) -> &str { | ^^^^^^^^^^ warning: associated function `implementation_name` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:117:12 | 117 | pub fn implementation_name(&self) -> &str { | ^^^^^^^^^^^^^^^^^^^ warning: associated function `interrupt` is never used --> src/ogre_std/ogre_queues/async_queues/non_blocking_queue.rs:121:8 | 121 | fn interrupt(&self) { | ^^^^^^^^^ warning: associated function `debug` is never used --> src/ogre_std/ogre_queues/blocking_queue.rs:337:12 | 337 | pub fn debug(&self) { | ^^^^^ warning: function `all_in_and_out_benchmark` is never used --> src/ogre_std/benchmarks.rs:21:8 | 21 | pub fn all_in_and_out_benchmark(container: &(dyn BenchmarkableContainer + Sync), threads: usize, deadline: Duration) -> f64 { | ^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `single_in_and_out_benchmark` is never used --> src/ogre_std/benchmarks.rs:49:8 | 49 | pub fn single_in_and_out_benchmark(container: &(dyn BenchmarkableContainer + Sync), threads: usize, deadline: Duration) -> f64 { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `single_producer_multiple_consumers_benchmark` is never used --> src/ogre_std/benchmarks.rs:75:8 | 75 | pub fn single_producer_multiple_consumers_benchmark(container: &(dyn BenchmarkableContainer + Sync), threads: usize, deadline: Dur... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `multiple_producers_single_consumer_benchmark` is never used --> src/ogre_std/benchmarks.rs:128:8 | 128 | pub fn multiple_producers_single_consumer_benchmark(container: &(dyn BenchmarkableContainer + Sync), threads: usize, deadline: Dur... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `keep_looping_or_compute_operations_per_second` is never used --> src/ogre_std/benchmarks.rs:185:4 | 185 | fn keep_looping_or_compute_operations_per_second(benchmark_name: String, start_time: &SystemTime, iterations: &mut u64, deadline: &Durati... | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: function `multi_threaded_iterate` is never used --> src/ogre_std/benchmarks.rs:201:8 | 201 | pub fn multi_threaded_iterate(start: usize, finish: usize, threads: usize, callback: impl Fn(u32) -> () + std::marker::Sync) { | ^^^^^^^^^^^^^^^^^^^^^^ warning: function `iterate` is never used --> src/ogre_std/benchmarks.rs:214:4 | 214 | fn iterate(start: usize, finish: usize, step: usize, callback: impl Fn(u32) -> () + std::marker::Sync) { | ^^^^^^^ warning: associated constant `METRICS` is never used --> src/ogre_std/container_instruments.rs:19:11 | 19 | const METRICS: usize = 1; | ^^^^^^^ warning: associated constant `METRICS_DIAGNOSTICS` is never used --> src/ogre_std/container_instruments.rs:20:11 | 20 | const METRICS_DIAGNOSTICS: usize = 2; | ^^^^^^^^^^^^^^^^^^^ warning: associated constant `TRACING` is never used --> src/ogre_std/container_instruments.rs:21:11 | 21 | const TRACING: usize = 4; | ^^^^^^^ warning: associated function `into` is never used --> src/ogre_std/container_instruments.rs:43:18 | 43 | pub const fn into(self) -> usize { | ^^^^ warning: dereferencing a null pointer --> src/ogre_std/ogre_queues/blocking_queue.rs:205:45 | 205 | ... empty_guard_ref: unsafe { &*std::ptr::null() as &RawMutex }, // TODO may changing it by mem init with zeroes solve the war... | ^^^^^^^^^^^^^^^^^ this code causes undefined behavior when executed | = note: `#[warn(deref_nullptr)]` on by default warning: method `metricsDiagnostics` should have a snake case name --> src/ogre_std/container_instruments.rs:74:18 | 74 | pub const fn metricsDiagnostics(self) -> bool { | ^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `metrics_diagnostics` | = note: `#[warn(non_snake_case)]` on by default warning: `reactive-mutiny` (lib) generated 73 warnings warning: unused variable: `i` --> src/ogre_std/ogre_queues/blocking_queue.rs:412:40 | 412 | assert_non_blocking(|| for i in 0..QUEUE_SIZE { | ^ help: if this is intentional, prefix it with an underscore: `_i` warning: unused variable: `result` --> src/ogre_std/ogre_queues/blocking_queue.rs:439:17 | 439 | let result = op(); | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_result` warning: associated function `send` is never used --> src/uni/channels/tokio_mpsc.rs:58:18 | 58 | pub async fn send(&self, item: ItemType) { | ^^^^ | = note: `#[warn(dead_code)]` on by default warning: function `basic_queue_use_cases_non_blocking` is never used --> src/ogre_std/ogre_queues/blocking_queue.rs:359:8 | 359 | fn basic_queue_use_cases_non_blocking() { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: `reactive-mutiny` (lib test) generated 57 warnings (46 duplicates) Finished release [optimized] target(s) in 12m 27s Running unittests src/lib.rs (target/release/deps/reactive_mutiny-4b405542cffca812) --> LOGGER WAS ALREADY STARTED --> LOGGER WAS ALREADY STARTED 2023-03-02T14:16:45.505Z INFO [reactive_mutiny::stream_executor::tests] minstant: is TSC / RDTSC instruction available for time measurement? false running 98 tests test incremental_averages::tests::incremental_averages ... ok <1.123s> test multi::channels::ogre_mpmc_queue::tests::doc_test ... received: a ok <0.001s> test multi::channels::ogre_mpmc_queue::tests::end_streams ... Creating & ending a single stream: Creating & ending two streams: ok <0.109s> test multi::channels::ogre_mpmc_queue::tests::multiple_streams ... ok <1.152s> 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.139s> test multi::channels::ogre_mpmc_queue::tests::payload_dropping ... ok <0.001s> test multi::channels::ogre_mpmc_queue::tests::performance_measurements ... OgreMPMCQueue (same task / same thread): 7525566.17/s -- 10485760 items processed in 1.393351645s OgreMPMCQueue (different task / same thread): 4385088.58/s -- 10485760 items processed in 2.391231059s OgreMPMCQueue (different task / different thread): 5521054.03/s -- 10485760 items processed in 1.899231548s ok <5.702s> 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.002s> test multi::tests::async_elements ... 2023-03-02T14:16:53.779Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'async event: Stream Pipeline #1' started: Futures (with timeouts of 2s) / Fallible Items & Metrics 2023-03-02T14:16:53.779Z 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-02T14:16:54.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async event: Stream Pipeline #1' ended after running for 1.002068162s -- stats: | ok: 4 events; avg 1.001622796s - 3.99174/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-02T14:16:54.785Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async event: Stream Pipeline #2' ended after running for 1.005482116s -- stats: | ok: 4 events; avg 1.004828215s - 3.97819/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 0 events; avg 0ns - 0.00000/sec ok <1.013s> test multi::tests::delete_pipelines ... 2023-03-02T14:16:54.801Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.803Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 2.044295ms -- stats: | ok: 0 events 2023-03-02T14:16:54.804Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.806Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.940035ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.811Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 1.953864ms -- stats: | ok: 0 events 2023-03-02T14:16:54.812Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.813Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 923.785µs -- stats: | ok: 0 events 2023-03-02T14:16:54.814Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.815Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 976.226µs -- stats: | ok: 0 events 2023-03-02T14:16:54.820Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.821Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 1.375509ms -- stats: | ok: 0 events 2023-03-02T14:16:54.823Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.825Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.680902ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.828Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 1.017053ms -- stats: | ok: 0 events 2023-03-02T14:16:54.830Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.832Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.973294ms -- stats: | ok: 0 events 2023-03-02T14:16:54.833Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.834Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 870.947µs -- stats: | ok: 0 events 2023-03-02T14:16:54.836Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.838Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.111273ms -- stats: | ok: 0 events 2023-03-02T14:16:54.841Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.842Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 1.094777ms -- stats: | ok: 0 events 2023-03-02T14:16:54.843Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.844Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 897.273µs -- stats: | ok: 0 events 2023-03-02T14:16:54.847Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.848Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 700.506µs -- stats: | ok: 0 events 2023-03-02T14:16:54.850Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.852Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.27593ms -- stats: | ok: 0 events 2023-03-02T14:16:54.856Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.857Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 856.06µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.858Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 929.529µs -- stats: | ok: 0 events 2023-03-02T14:16:54.862Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.862Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 644.191µs -- stats: | ok: 0 events 2023-03-02T14:16:54.863Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.866Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.968371ms -- stats: | ok: 0 events 2023-03-02T14:16:54.869Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.869Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 129.284µs -- stats: | ok: 0 events 2023-03-02T14:16:54.869Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.871Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.332446ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.874Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 136.301µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.877Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.621534ms -- stats: | ok: 0 events 2023-03-02T14:16:54.879Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.879Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 230.677µs -- stats: | ok: 0 events 2023-03-02T14:16:54.880Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.882Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.91401ms -- stats: | ok: 0 events 2023-03-02T14:16:54.884Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.884Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 100.962µs -- stats: | ok: 0 events 2023-03-02T14:16:54.884Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.887Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.604161ms -- stats: | ok: 0 events 2023-03-02T14:16:54.888Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.889Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 721.098µs -- stats: | ok: 0 events 2023-03-02T14:16:54.889Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.890Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.362006ms -- stats: | ok: 0 events 2023-03-02T14:16:54.893Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.893Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 100.306µs -- stats: | ok: 0 events 2023-03-02T14:16:54.893Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.895Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.35583ms -- stats: | ok: 0 events 2023-03-02T14:16:54.898Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.898Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 98.592µs -- stats: | ok: 0 events 2023-03-02T14:16:54.898Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.900Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.34586ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.903Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 98.406µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.905Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.306095ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.908Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 117.268µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.909Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.30175ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.912Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 105.769µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.913Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.373123ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.916Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 107.429µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.918Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.81209ms -- stats: | ok: 0 events 2023-03-02T14:16:54.920Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.920Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 780.03µs -- stats: | ok: 0 events 2023-03-02T14:16:54.920Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.922Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.582517ms -- stats: | ok: 0 events 2023-03-02T14:16:54.923Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.924Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 476.301µs -- stats: | ok: 0 events 2023-03-02T14:16:54.924Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.925Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.47204ms -- stats: | ok: 0 events 2023-03-02T14:16:54.927Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.927Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.301µs -- stats: | ok: 0 events 2023-03-02T14:16:54.927Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.929Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.257214ms -- stats: | ok: 0 events 2023-03-02T14:16:54.932Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.932Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.569µs -- stats: | ok: 0 events 2023-03-02T14:16:54.932Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.934Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.256386ms -- stats: | ok: 0 events 2023-03-02T14:16:54.937Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.937Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 79.173µs -- stats: | ok: 0 events 2023-03-02T14:16:54.937Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.938Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.405579ms -- stats: | ok: 0 events 2023-03-02T14:16:54.941Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.941Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 81.354µs -- stats: | ok: 0 events 2023-03-02T14:16:54.941Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.943Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.254762ms -- stats: | ok: 0 events 2023-03-02T14:16:54.946Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.946Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.428µs -- stats: | ok: 0 events 2023-03-02T14:16:54.946Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.947Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.276075ms -- stats: | ok: 0 events 2023-03-02T14:16:54.949Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.950Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 78.045µs -- stats: | ok: 0 events 2023-03-02T14:16:54.950Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.952Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.250646ms -- stats: | ok: 0 events 2023-03-02T14:16:54.954Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.954Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.799µs -- stats: | ok: 0 events 2023-03-02T14:16:54.954Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.957Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.844306ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.960Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 134.015µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.962Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.795023ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.963Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.679µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.966Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.386311ms -- stats: | ok: 0 events 2023-03-02T14:16:54.967Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.967Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.604µs -- stats: | ok: 0 events 2023-03-02T14:16:54.967Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.970Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.350923ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.972Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.414µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.975Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.424376ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.977Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.213µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.979Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.335945ms -- stats: | ok: 0 events 2023-03-02T14:16:54.982Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.982Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 86.105µs -- stats: | ok: 0 events 2023-03-02T14:16:54.982Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.983Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.418015ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.985Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.326µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.988Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.373534ms -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.990Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 78.366µs -- stats: | ok: 0 events 2023-03-02T14:16:54.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-02T14:16:54.993Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.324301ms -- stats: | ok: 0 events 2023-03-02T14:16:54.995Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.995Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.023µs -- stats: | ok: 0 events 2023-03-02T14:16:54.995Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:54.997Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.250828ms -- stats: | ok: 0 events 2023-03-02T14:16:55.000Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.000Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.311µs -- stats: | ok: 0 events 2023-03-02T14:16:55.000Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.002Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.91382ms -- stats: | ok: 0 events 2023-03-02T14:16:55.004Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.004Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.472µs -- stats: | ok: 0 events 2023-03-02T14:16:55.004Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.006Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.253018ms -- stats: | ok: 0 events 2023-03-02T14:16:55.009Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.009Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 82.962µs -- stats: | ok: 0 events 2023-03-02T14:16:55.009Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.010Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.368958ms -- stats: | ok: 0 events 2023-03-02T14:16:55.012Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.012Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 79.604µs -- stats: | ok: 0 events 2023-03-02T14:16:55.012Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.015Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.33586ms -- stats: | ok: 0 events 2023-03-02T14:16:55.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.017Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.118µs -- stats: | ok: 0 events 2023-03-02T14:16:55.017Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.019Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.249324ms -- stats: | ok: 0 events 2023-03-02T14:16:55.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.022Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.777µs -- stats: | ok: 0 events 2023-03-02T14:16:55.022Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.023Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.369299ms -- stats: | ok: 0 events 2023-03-02T14:16:55.026Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.026Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 79.188µs -- stats: | ok: 0 events 2023-03-02T14:16:55.026Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.027Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.514371ms -- stats: | ok: 0 events 2023-03-02T14:16:55.030Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.030Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.196µs -- stats: | ok: 0 events 2023-03-02T14:16:55.030Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.031Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.280952ms -- stats: | ok: 0 events 2023-03-02T14:16:55.034Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.034Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 81.097µs -- stats: | ok: 0 events 2023-03-02T14:16:55.034Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.036Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.369965ms -- stats: | ok: 0 events 2023-03-02T14:16:55.039Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.039Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.513µs -- stats: | ok: 0 events 2023-03-02T14:16:55.039Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.040Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.508682ms -- stats: | ok: 0 events 2023-03-02T14:16:55.043Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.043Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.536µs -- stats: | ok: 0 events 2023-03-02T14:16:55.043Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.045Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.24995ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.048Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.193µs -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.050Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.249439ms -- stats: | ok: 0 events 2023-03-02T14:16:55.052Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.052Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.772µs -- stats: | ok: 0 events 2023-03-02T14:16:55.052Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.055Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.248702ms -- stats: | ok: 0 events 2023-03-02T14:16:55.056Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.056Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.428µs -- stats: | ok: 0 events 2023-03-02T14:16:55.056Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.058Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.299684ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.061Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.915µs -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.063Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.758612ms -- stats: | ok: 0 events 2023-03-02T14:16:55.064Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.064Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.945µs -- stats: | ok: 0 events 2023-03-02T14:16:55.064Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.067Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.365248ms -- stats: | ok: 0 events 2023-03-02T14:16:55.069Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.069Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.426µs -- stats: | ok: 0 events 2023-03-02T14:16:55.069Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.072Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.349047ms -- stats: | ok: 0 events 2023-03-02T14:16:55.073Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.073Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 78.837µs -- stats: | ok: 0 events 2023-03-02T14:16:55.073Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.076Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.265714ms -- stats: | ok: 0 events 2023-03-02T14:16:55.078Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.078Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.384µs -- stats: | ok: 0 events 2023-03-02T14:16:55.078Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.080Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.254642ms -- stats: | ok: 0 events 2023-03-02T14:16:55.083Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.083Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.717µs -- stats: | ok: 0 events 2023-03-02T14:16:55.083Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.085Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.24981ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.087Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.522µs -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.090Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.256001ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.091Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.245µs -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.093Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.298602ms -- stats: | ok: 0 events 2023-03-02T14:16:55.096Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.096Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 79.489µs -- stats: | ok: 0 events 2023-03-02T14:16:55.096Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.098Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.380472ms -- stats: | ok: 0 events 2023-03-02T14:16:55.101Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.101Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.156µs -- stats: | ok: 0 events 2023-03-02T14:16:55.101Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.102Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.276627ms -- stats: | ok: 0 events 2023-03-02T14:16:55.105Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.105Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.825µs -- stats: | ok: 0 events 2023-03-02T14:16:55.105Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.106Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.544371ms -- stats: | ok: 0 events 2023-03-02T14:16:55.109Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.109Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.008µs -- stats: | ok: 0 events 2023-03-02T14:16:55.109Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.111Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.252155ms -- stats: | ok: 0 events 2023-03-02T14:16:55.114Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.114Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.636µs -- stats: | ok: 0 events 2023-03-02T14:16:55.114Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.115Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.363454ms -- stats: | ok: 0 events 2023-03-02T14:16:55.118Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.118Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.516µs -- stats: | ok: 0 events 2023-03-02T14:16:55.118Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.120Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.740527ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.121Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 80.967µs -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.124Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.253955ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.125Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.539µs -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.128Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.377413ms -- stats: | ok: 0 events 2023-03-02T14:16:55.129Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.129Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.774µs -- stats: | ok: 0 events 2023-03-02T14:16:55.129Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.132Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.553303ms -- stats: | ok: 0 events 2023-03-02T14:16:55.133Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.133Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.369µs -- stats: | ok: 0 events 2023-03-02T14:16:55.133Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.136Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.374407ms -- stats: | ok: 0 events 2023-03-02T14:16:55.138Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.138Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.569µs -- stats: | ok: 0 events 2023-03-02T14:16:55.138Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.141Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.30395ms -- stats: | ok: 0 events 2023-03-02T14:16:55.143Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.143Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.714µs -- stats: | ok: 0 events 2023-03-02T14:16:55.143Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.145Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.346301ms -- stats: | ok: 0 events 2023-03-02T14:16:55.148Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.148Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 78.476µs -- stats: | ok: 0 events 2023-03-02T14:16:55.148Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.151Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.475243ms -- stats: | ok: 0 events 2023-03-02T14:16:55.153Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.153Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.529µs -- stats: | ok: 0 events 2023-03-02T14:16:55.153Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.155Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.247569ms -- stats: | ok: 0 events 2023-03-02T14:16:55.158Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.158Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.935µs -- stats: | ok: 0 events 2023-03-02T14:16:55.158Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.160Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.249544ms -- stats: | ok: 0 events 2023-03-02T14:16:55.162Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.162Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.8µs -- stats: | ok: 0 events 2023-03-02T14:16:55.162Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.165Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.258501ms -- stats: | ok: 0 events 2023-03-02T14:16:55.166Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.166Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.772µs -- stats: | ok: 0 events 2023-03-02T14:16:55.166Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.168Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.329434ms -- stats: | ok: 0 events 2023-03-02T14:16:55.171Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.171Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.416µs -- stats: | ok: 0 events 2023-03-02T14:16:55.171Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.172Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.277183ms -- stats: | ok: 0 events 2023-03-02T14:16:55.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.175Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 84.661µs -- stats: | ok: 0 events 2023-03-02T14:16:55.175Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.177Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.370687ms -- stats: | ok: 0 events 2023-03-02T14:16:55.180Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.180Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.163µs -- stats: | ok: 0 events 2023-03-02T14:16:55.180Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.182Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.253755ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.185Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.9µs -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.186Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.358146ms -- stats: | ok: 0 events 2023-03-02T14:16:55.189Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.189Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.919µs -- stats: | ok: 0 events 2023-03-02T14:16:55.189Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.190Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.354932ms -- stats: | ok: 0 events 2023-03-02T14:16:55.193Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.193Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.747µs -- stats: | ok: 0 events 2023-03-02T14:16:55.193Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.195Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.342968ms -- stats: | ok: 0 events 2023-03-02T14:16:55.198Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.198Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.185µs -- stats: | ok: 0 events 2023-03-02T14:16:55.198Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.200Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.33811ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.203Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.694µs -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.204Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.51ms -- stats: | ok: 0 events 2023-03-02T14:16:55.207Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.207Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.731µs -- stats: | ok: 0 events 2023-03-02T14:16:55.207Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.209Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.251785ms -- stats: | ok: 0 events 2023-03-02T14:16:55.212Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.212Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.101µs -- stats: | ok: 0 events 2023-03-02T14:16:55.212Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.213Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.274236ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.215Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.735µs -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.218Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.293689ms -- stats: | ok: 0 events 2023-03-02T14:16:55.220Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.220Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 70.952µs -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.222Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.304877ms -- stats: | ok: 0 events 2023-03-02T14:16:55.225Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.225Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.847µs -- stats: | ok: 0 events 2023-03-02T14:16:55.225Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.226Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.264732ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.229Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.163µs -- stats: | ok: 0 events 2023-03-02T14:16:55.229Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.231Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.244371ms -- stats: | ok: 0 events 2023-03-02T14:16:55.233Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.233Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.694µs -- stats: | ok: 0 events 2023-03-02T14:16:55.233Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.236Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.295238ms -- stats: | ok: 0 events 2023-03-02T14:16:55.238Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.238Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 71.413µs -- stats: | ok: 0 events 2023-03-02T14:16:55.238Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.240Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.251619ms -- stats: | ok: 0 events 2023-03-02T14:16:55.243Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.243Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 72.301µs -- stats: | ok: 0 events 2023-03-02T14:16:55.243Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.244Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.282165ms -- stats: | ok: 0 events 2023-03-02T14:16:55.247Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.247Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 81.103µs -- stats: | ok: 0 events 2023-03-02T14:16:55.247Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.248Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.294943ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.251Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 79.394µs -- stats: | ok: 0 events 2023-03-02T14:16:55.251Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.253Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.247749ms -- stats: | ok: 0 events 2023-03-02T14:16:55.255Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.255Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.105µs -- stats: | ok: 0 events 2023-03-02T14:16:55.255Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.258Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.348105ms -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.259Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 125.739µs -- stats: | ok: 0 events 2023-03-02T14:16:55.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-02T14:16:55.262Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.269695ms -- stats: | ok: 0 events 2023-03-02T14:16:55.264Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.264Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 135.028µs -- stats: | ok: 0 events 2023-03-02T14:16:55.264Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.266Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.260983ms -- stats: | ok: 0 events 2023-03-02T14:16:55.269Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.269Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.052µs -- stats: | ok: 0 events 2023-03-02T14:16:55.269Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.270Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.266031ms -- stats: | ok: 0 events 2023-03-02T14:16:55.272Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.273Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 121.649µs -- stats: | ok: 0 events 2023-03-02T14:16:55.273Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.275Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.261629ms -- stats: | ok: 0 events 2023-03-02T14:16:55.277Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.277Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 78.09µs -- stats: | ok: 0 events 2023-03-02T14:16:55.277Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.280Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.345895ms -- stats: | ok: 0 events 2023-03-02T14:16:55.282Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.282Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.403µs -- stats: | ok: 0 events 2023-03-02T14:16:55.282Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.285Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.276306ms -- stats: | ok: 0 events 2023-03-02T14:16:55.287Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.287Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.777µs -- stats: | ok: 0 events 2023-03-02T14:16:55.287Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.289Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.338963ms -- stats: | ok: 0 events 2023-03-02T14:16:55.292Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.292Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.356µs -- stats: | ok: 0 events 2023-03-02T14:16:55.292Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.293Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.311309ms -- stats: | ok: 0 events 2023-03-02T14:16:55.296Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.296Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 78.983µs -- stats: | ok: 0 events 2023-03-02T14:16:55.296Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.297Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.574822ms -- stats: | ok: 0 events 2023-03-02T14:16:55.300Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.300Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 78.868µs -- stats: | ok: 0 events 2023-03-02T14:16:55.300Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.302Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.350877ms -- stats: | ok: 0 events 2023-03-02T14:16:55.305Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.305Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.652µs -- stats: | ok: 0 events 2023-03-02T14:16:55.305Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.306Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.364983ms -- stats: | ok: 0 events 2023-03-02T14:16:55.309Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.309Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 80.18µs -- stats: | ok: 0 events 2023-03-02T14:16:55.309Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.310Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.406321ms -- stats: | ok: 0 events 2023-03-02T14:16:55.313Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.313Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 79.117µs -- stats: | ok: 0 events 2023-03-02T14:16:55.313Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.314Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.383193ms -- stats: | ok: 0 events 2023-03-02T14:16:55.317Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.317Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.9µs -- stats: | ok: 0 events 2023-03-02T14:16:55.317Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.318Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.359849ms -- stats: | ok: 0 events 2023-03-02T14:16:55.321Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.321Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 82.737µs -- stats: | ok: 0 events 2023-03-02T14:16:55.321Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.322Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.281288ms -- stats: | ok: 0 events 2023-03-02T14:16:55.324Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.324Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.06µs -- stats: | ok: 0 events 2023-03-02T14:16:55.324Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.327Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.380586ms -- stats: | ok: 0 events 2023-03-02T14:16:55.329Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.329Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.341µs -- stats: | ok: 0 events 2023-03-02T14:16:55.329Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.331Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.375173ms -- stats: | ok: 0 events 2023-03-02T14:16:55.334Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.334Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.642µs -- stats: | ok: 0 events 2023-03-02T14:16:55.334Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.336Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.250045ms -- stats: | ok: 0 events 2023-03-02T14:16:55.339Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.339Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.095µs -- stats: | ok: 0 events 2023-03-02T14:16:55.339Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.341Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.255403ms -- stats: | ok: 0 events 2023-03-02T14:16:55.343Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.343Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.471µs -- stats: | ok: 0 events 2023-03-02T14:16:55.343Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.346Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.367333ms -- stats: | ok: 0 events 2023-03-02T14:16:55.347Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.347Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.336µs -- stats: | ok: 0 events 2023-03-02T14:16:55.347Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.349Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.283083ms -- stats: | ok: 0 events 2023-03-02T14:16:55.352Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.352Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.649µs -- stats: | ok: 0 events 2023-03-02T14:16:55.352Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.354Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.343895ms -- stats: | ok: 0 events 2023-03-02T14:16:55.357Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.357Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.689µs -- stats: | ok: 0 events 2023-03-02T14:16:55.357Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.358Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.278035ms -- stats: | ok: 0 events 2023-03-02T14:16:55.360Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.360Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.812µs -- stats: | ok: 0 events 2023-03-02T14:16:55.360Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.363Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.310963ms -- stats: | ok: 0 events 2023-03-02T14:16:55.365Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.365Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 76.326µs -- stats: | ok: 0 events 2023-03-02T14:16:55.365Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.367Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.333709ms -- stats: | ok: 0 events 2023-03-02T14:16:55.370Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.370Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 77.474µs -- stats: | ok: 0 events 2023-03-02T14:16:55.370Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.371Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.309469ms -- stats: | ok: 0 events 2023-03-02T14:16:55.373Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.374Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.281µs -- stats: | ok: 0 events 2023-03-02T14:16:55.374Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.375Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.27824ms -- stats: | ok: 0 events 2023-03-02T14:16:55.377Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.377Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 73.659µs -- stats: | ok: 0 events 2023-03-02T14:16:55.377Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.380Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.345504ms -- stats: | ok: 0 events 2023-03-02T14:16:55.381Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.381Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.394µs -- stats: | ok: 0 events 2023-03-02T14:16:55.381Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.384Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.299755ms -- stats: | ok: 0 events 2023-03-02T14:16:55.386Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.386Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 75.143µs -- stats: | ok: 0 events 2023-03-02T14:16:55.386Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.388Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.340336ms -- stats: | ok: 0 events 2023-03-02T14:16:55.391Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.391Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 89.208µs -- stats: | ok: 0 events 2023-03-02T14:16:55.391Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.393Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 1.781589ms -- stats: | ok: 0 events 2023-03-02T14:16:55.395Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.395Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #1' ended after running for 74.416µs -- stats: | ok: 0 events 2023-03-02T14:16:55.395Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.397Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Executor 'Event with come and go pipelines: Pipeline #2' ended after running for 2.251675ms -- stats: | ok: 0 events 2023-03-02T14:16:55.400Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Event with come and go pipelines: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.402Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with come and go pipelines: Pipeline #2' ended after running for 2.257058ms -- stats: | ok: 1 events ok <0.610s> test multi::tests::demux ... 2023-03-02T14:16:55.409Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.409Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.409Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.409Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.409Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.409Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:16:55.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO: Pipeline #1' ended after running for 104.157577ms -- stats: | ok: 4 events 2023-03-02T14:16:55.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO: Pipeline #2' ended after running for 104.277006ms -- stats: | ok: 4 events 2023-03-02T14:16:55.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR: Pipeline #1' ended after running for 104.47111ms -- stats: | ok: 6 events 2023-03-02T14:16:55.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR: Pipeline #2' ended after running for 104.553607ms -- stats: | ok: 6 events 2023-03-02T14:16:55.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIX: Pipeline #1' ended after running for 105.159116ms -- stats: | ok: 1 events 2023-03-02T14:16:55.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIX: Pipeline #2' ended after running for 105.201457ms -- stats: | ok: 1 events ok <0.110s> test multi::tests::doc_tests ... 2023-03-02T14:16:55.526Z 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-02T14:16:55.527Z 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-02T14:16:55.527Z 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-02T14:16:55.531Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: local screen' ended after running for 4.681514ms -- stats: | ok: 2 events 2023-03-02T14:16:55.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: zeta receiver' ended after running for 6.134682ms -- stats: | ok: 2 events 2023-03-02T14:16:55.533Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() event: earth snapper' ended after running for 6.17151ms -- stats: | ok: 2 events ok <0.013s> test multi::tests::error_handling ... 2023-03-02T14:16:55.541Z 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-02T14:16:55.544Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'Event with error handling: Pipeline #1' yielded ERROR '"BLOW CODE received: 79"' in 13.268µs Pipeline #1: ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-02T14:16:55.547Z 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-02T14:16:55.549Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'Event with error handling: Pipeline #2' yielded ERROR '"BLOW CODE received: 79"' in 7.604µs Pipeline #2: ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-02T14:16:55.550Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with error handling: Pipeline #1' ended after running for 9.646256ms -- stats: | ok: 3 events; avg 445.198µs - 311.00149/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 13.268µs - 103.66716/sec 2023-03-02T14:16:55.551Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Event with error handling: Pipeline #2' ended after running for 4.317895ms -- stats: | ok: 3 events; avg 353.844µs - 694.78299/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 7.604µs - 231.59433/sec ok <0.016s> test multi::tests::performance_measurements ... metricfull_non_futures_non_fallible_multi: 4532543.70/s -- 4194304 items processed in 925.375303ms metricless_non_futures_non_fallible_multi: 5771739.14/s -- 4194304 items processed in 726.696737ms par_metricless_non_futures_non_fallible_multi: 1718292.88/s -- 4194304 items processed in 2.440971524s metricfull_futures_fallible_multi: 2538223.56/s -- 4194304 items processed in 1.652456492s metricless_futures_fallible_multi: 4915576.27/s -- 4194304 items processed in 853.268014ms timeoutable_metricfull_futures_fallible_multi: 1166722.91/s -- 3145728 items processed in 2.69620831s timeoutable_metricless_futures_fallible_multi: 1670088.17/s -- 3145728 items processed in 1.883570013s ok <11.192s> test multi::tests::simple_pipelines ... 2023-03-02T14:17:06.753Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Simple Event: Pipeline #1' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:06.753Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'Simple Event: Pipeline #2' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:06.755Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Simple Event: Pipeline #1' ended after running for 2.278692ms -- stats: | ok: 2 events 2023-03-02T14:17:06.756Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'Simple Event: Pipeline #2' ended after running for 2.294697ms -- stats: | ok: 2 events ok <0.007s> test multi::tests::stats ... 2023-03-02T14:17:06.764Z 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-02T14:17:06.764Z 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-02T14:17:06.764Z 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-02T14:17:06.764Z 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-02T14:17:06.764Z 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-02T14:17:06.764Z 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-02T14:17:06.764Z 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-02T14:17:06.764Z 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-02T14:17:06.764Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.765Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.766Z 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-02T14:17:06.768Z 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-02T14:17:06.768Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.769Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.770Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.771Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.772Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.773Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.774Z 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-02T14:17:06.775Z 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-02T14:17:06.775Z 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-02T14:17:06.775Z 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-02T14:17:06.775Z 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-02T14:17:06.775Z 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-02T14:17:06.775Z 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-02T14:17:06.775Z 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-02T14:17:06.775Z 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-02T14:17:06.775Z 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-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #0 for non_future/non_fallible event' ended after running for 13.52179ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #1 for non_future/non_fallible event' ended after running for 13.539906ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #2 for non_future/non_fallible event' ended after running for 13.548628ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #3 for non_future/non_fallible event' ended after running for 13.557905ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #4 for non_future/non_fallible event' ended after running for 13.568327ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #5 for non_future/non_fallible event' ended after running for 13.539154ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #6 for non_future/non_fallible event' ended after running for 13.545786ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #7 for non_future/non_fallible event' ended after running for 13.554312ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #8 for non_future/non_fallible event' ended after running for 13.566402ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #9 for non_future/non_fallible event' ended after running for 13.578187ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #10 for non_future/non_fallible event' ended after running for 13.589966ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #11 for non_future/non_fallible event' ended after running for 13.602422ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #12 for non_future/non_fallible event' ended after running for 13.616532ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #13 for non_future/non_fallible event' ended after running for 13.628859ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #14 for non_future/non_fallible event' ended after running for 13.637936ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #15 for non_future/non_fallible event' ended after running for 13.646106ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #16 for non_future/non_fallible event' ended after running for 13.708693ms -- stats: | ok: 1 events 2023-03-02T14:17:06.778Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #17 for non_future/non_fallible event' ended after running for 13.720412ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #18 for non_future/non_fallible event' ended after running for 13.731931ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #19 for non_future/non_fallible event' ended after running for 13.741054ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #20 for non_future/non_fallible event' ended after running for 13.73741ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #21 for non_future/non_fallible event' ended after running for 13.745961ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #22 for non_future/non_fallible event' ended after running for 13.756016ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #23 for non_future/non_fallible event' ended after running for 13.76947ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #24 for non_future/non_fallible event' ended after running for 13.780517ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #25 for non_future/non_fallible event' ended after running for 13.790211ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #26 for non_future/non_fallible event' ended after running for 13.804121ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #27 for non_future/non_fallible event' ended after running for 13.710262ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #28 for non_future/non_fallible event' ended after running for 13.719179ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #29 for non_future/non_fallible event' ended after running for 13.730157ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #30 for non_future/non_fallible event' ended after running for 13.740988ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #31 for non_future/non_fallible event' ended after running for 13.75133ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #32 for non_future/non_fallible event' ended after running for 13.760648ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #33 for non_future/non_fallible event' ended after running for 13.769089ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #34 for non_future/non_fallible event' ended after running for 13.751245ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #35 for non_future/non_fallible event' ended after running for 13.756156ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #36 for non_future/non_fallible event' ended after running for 13.78563ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #37 for non_future/non_fallible event' ended after running for 13.799801ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #38 for non_future/non_fallible event' ended after running for 13.813089ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #39 for non_future/non_fallible event' ended after running for 13.825174ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #40 for non_future/non_fallible event' ended after running for 13.86776ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #41 for non_future/non_fallible event' ended after running for 13.881289ms -- stats: | ok: 1 events 2023-03-02T14:17:06.779Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #42 for non_future/non_fallible event' ended after running for 13.892387ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #43 for non_future/non_fallible event' ended after running for 13.900838ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #44 for non_future/non_fallible event' ended after running for 13.911951ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #45 for non_future/non_fallible event' ended after running for 13.921771ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #46 for non_future/non_fallible event' ended after running for 13.932322ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #47 for non_future/non_fallible event' ended after running for 13.943159ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #48 for non_future/non_fallible event' ended after running for 13.954733ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #49 for non_future/non_fallible event' ended after running for 13.952613ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #50 for non_future/non_fallible event' ended after running for 13.962402ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #51 for non_future/non_fallible event' ended after running for 13.883374ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #52 for non_future/non_fallible event' ended after running for 13.88343ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #53 for non_future/non_fallible event' ended after running for 13.892006ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #54 for non_future/non_fallible event' ended after running for 13.907114ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #55 for non_future/non_fallible event' ended after running for 13.918503ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #56 for non_future/non_fallible event' ended after running for 13.928397ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #57 for non_future/non_fallible event' ended after running for 13.93735ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #58 for non_future/non_fallible event' ended after running for 13.946297ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #59 for non_future/non_fallible event' ended after running for 13.955901ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #60 for non_future/non_fallible event' ended after running for 13.967069ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #61 for non_future/non_fallible event' ended after running for 11.863565ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #62 for non_future/non_fallible event' ended after running for 11.854772ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #63 for non_future/non_fallible event' ended after running for 11.903931ms -- stats: | ok: 1 events 2023-03-02T14:17:06.780Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #64 for non_future/non_fallible event' ended after running for 11.920212ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #65 for non_future/non_fallible event' ended after running for 11.930553ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #66 for non_future/non_fallible event' ended after running for 11.942793ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #67 for non_future/non_fallible event' ended after running for 11.942292ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #68 for non_future/non_fallible event' ended after running for 11.95362ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #69 for non_future/non_fallible event' ended after running for 11.964637ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #70 for non_future/non_fallible event' ended after running for 11.975935ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #71 for non_future/non_fallible event' ended after running for 11.987029ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #72 for non_future/non_fallible event' ended after running for 12.008758ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #73 for non_future/non_fallible event' ended after running for 12.020502ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #74 for non_future/non_fallible event' ended after running for 12.031439ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #75 for non_future/non_fallible event' ended after running for 12.043209ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #76 for non_future/non_fallible event' ended after running for 12.054562ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #77 for non_future/non_fallible event' ended after running for 12.066006ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #78 for non_future/non_fallible event' ended after running for 12.079184ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #79 for non_future/non_fallible event' ended after running for 12.090342ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #80 for non_future/non_fallible event' ended after running for 12.102632ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #81 for non_future/non_fallible event' ended after running for 12.116427ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #82 for non_future/non_fallible event' ended after running for 12.128286ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #83 for non_future/non_fallible event' ended after running for 12.140843ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #84 for non_future/non_fallible event' ended after running for 12.153079ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #85 for non_future/non_fallible event' ended after running for 12.188568ms -- stats: | ok: 1 events 2023-03-02T14:17:06.781Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #86 for non_future/non_fallible event' ended after running for 12.200352ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #87 for non_future/non_fallible event' ended after running for 12.211555ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #88 for non_future/non_fallible event' ended after running for 12.223579ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #89 for non_future/non_fallible event' ended after running for 12.212212ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #90 for non_future/non_fallible event' ended after running for 12.226167ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #91 for non_future/non_fallible event' ended after running for 12.241119ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #92 for non_future/non_fallible event' ended after running for 12.252432ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #93 for non_future/non_fallible event' ended after running for 12.264767ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #94 for non_future/non_fallible event' ended after running for 12.278097ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #95 for non_future/non_fallible event' ended after running for 12.281355ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #96 for non_future/non_fallible event' ended after running for 12.292978ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #97 for non_future/non_fallible event' ended after running for 12.304112ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #98 for non_future/non_fallible event' ended after running for 12.318813ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #99 for non_future/non_fallible event' ended after running for 12.330246ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #100 for non_future/non_fallible event' ended after running for 12.342121ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #101 for non_future/non_fallible event' ended after running for 12.354262ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #102 for non_future/non_fallible event' ended after running for 12.366041ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #103 for non_future/non_fallible event' ended after running for 12.382628ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #104 for non_future/non_fallible event' ended after running for 12.39562ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #105 for non_future/non_fallible event' ended after running for 12.405039ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #106 for non_future/non_fallible event' ended after running for 12.415966ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #107 for non_future/non_fallible event' ended after running for 12.470041ms -- stats: | ok: 1 events 2023-03-02T14:17:06.782Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #108 for non_future/non_fallible event' ended after running for 12.49534ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #109 for non_future/non_fallible event' ended after running for 12.507821ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #110 for non_future/non_fallible event' ended after running for 12.519931ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #111 for non_future/non_fallible event' ended after running for 12.530758ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #112 for non_future/non_fallible event' ended after running for 12.542598ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #113 for non_future/non_fallible event' ended after running for 12.555429ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #114 for non_future/non_fallible event' ended after running for 12.566953ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #115 for non_future/non_fallible event' ended after running for 12.581344ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #116 for non_future/non_fallible event' ended after running for 12.592091ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #117 for non_future/non_fallible event' ended after running for 12.602001ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #118 for non_future/non_fallible event' ended after running for 12.613509ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #119 for non_future/non_fallible event' ended after running for 12.626888ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #120 for non_future/non_fallible event' ended after running for 12.597089ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #121 for non_future/non_fallible event' ended after running for 12.607048ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #122 for non_future/non_fallible event' ended after running for 12.604087ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #123 for non_future/non_fallible event' ended after running for 12.618317ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #124 for non_future/non_fallible event' ended after running for 12.629224ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #125 for non_future/non_fallible event' ended after running for 12.653565ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #126 for non_future/non_fallible event' ended after running for 12.666798ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #127 for non_future/non_fallible event' ended after running for 12.711459ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #128 for non_future/non_fallible event' ended after running for 12.730437ms -- stats: | ok: 1 events 2023-03-02T14:17:06.783Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #129 for non_future/non_fallible event' ended after running for 12.738828ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #130 for non_future/non_fallible event' ended after running for 12.752257ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #131 for non_future/non_fallible event' ended after running for 12.763454ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #132 for non_future/non_fallible event' ended after running for 12.774462ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #133 for non_future/non_fallible event' ended after running for 12.786963ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #134 for non_future/non_fallible event' ended after running for 12.801434ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #135 for non_future/non_fallible event' ended after running for 12.815204ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #136 for non_future/non_fallible event' ended after running for 12.825134ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #137 for non_future/non_fallible event' ended after running for 12.827059ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #138 for non_future/non_fallible event' ended after running for 12.838868ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #139 for non_future/non_fallible event' ended after running for 12.849023ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #140 for non_future/non_fallible event' ended after running for 12.860211ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #141 for non_future/non_fallible event' ended after running for 12.871199ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #142 for non_future/non_fallible event' ended after running for 12.897204ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #143 for non_future/non_fallible event' ended after running for 12.90961ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #144 for non_future/non_fallible event' ended after running for 12.926107ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #145 for non_future/non_fallible event' ended after running for 12.936177ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #146 for non_future/non_fallible event' ended after running for 12.948372ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #147 for non_future/non_fallible event' ended after running for 12.960763ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #148 for non_future/non_fallible event' ended after running for 12.971485ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #149 for non_future/non_fallible event' ended after running for 12.980306ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #150 for non_future/non_fallible event' ended after running for 12.99971ms -- stats: | ok: 1 events 2023-03-02T14:17:06.784Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #151 for non_future/non_fallible event' ended after running for 13.01368ms -- stats: | ok: 1 events 2023-03-02T14:17:06.785Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #152 for non_future/non_fallible event' ended after running for 13.027038ms -- stats: | ok: 1 events 2023-03-02T14:17:06.785Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #153 for non_future/non_fallible event' ended after running for 13.038592ms -- stats: | ok: 1 events 2023-03-02T14:17:06.785Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #154 for non_future/non_fallible event' ended after running for 13.040668ms -- stats: | ok: 1 events 2023-03-02T14:17:06.785Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #155 for non_future/non_fallible event' ended after running for 13.051655ms -- stats: | ok: 1 events 2023-03-02T14:17:06.785Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #156 for non_future/non_fallible event' ended after running for 13.063485ms -- stats: | ok: 1 events 2023-03-02T14:17:06.785Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #157 for non_future/non_fallible event' ended after running for 13.074557ms -- stats: | ok: 1 events 2023-03-02T14:17:06.785Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #158 for non_future/non_fallible event' ended after running for 13.086437ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #159 for non_future/non_fallible event' ended after running for 15.164587ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #160 for non_future/non_fallible event' ended after running for 15.201219ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #161 for non_future/non_fallible event' ended after running for 15.212187ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #162 for non_future/non_fallible event' ended after running for 15.221048ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #163 for non_future/non_fallible event' ended after running for 15.228352ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #164 for non_future/non_fallible event' ended after running for 15.239615ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #165 for non_future/non_fallible event' ended after running for 15.248116ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #166 for non_future/non_fallible event' ended after running for 15.256022ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #167 for non_future/non_fallible event' ended after running for 15.26346ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #168 for non_future/non_fallible event' ended after running for 15.272703ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #169 for non_future/non_fallible event' ended after running for 15.279875ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #170 for non_future/non_fallible event' ended after running for 15.320297ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #171 for non_future/non_fallible event' ended after running for 15.322658ms -- stats: | ok: 1 events 2023-03-02T14:17:06.787Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #172 for non_future/non_fallible event' ended after running for 15.331074ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #173 for non_future/non_fallible event' ended after running for 15.338588ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #174 for non_future/non_fallible event' ended after running for 15.344267ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #175 for non_future/non_fallible event' ended after running for 15.354126ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #176 for non_future/non_fallible event' ended after running for 15.372152ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #177 for non_future/non_fallible event' ended after running for 15.380517ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #178 for non_future/non_fallible event' ended after running for 15.389345ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #179 for non_future/non_fallible event' ended after running for 15.362332ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #180 for non_future/non_fallible event' ended after running for 15.369028ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #181 for non_future/non_fallible event' ended after running for 15.378733ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #182 for non_future/non_fallible event' ended after running for 15.38944ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #183 for non_future/non_fallible event' ended after running for 15.369991ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #184 for non_future/non_fallible event' ended after running for 15.37337ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #185 for non_future/non_fallible event' ended after running for 15.382162ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #186 for non_future/non_fallible event' ended after running for 15.389003ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #187 for non_future/non_fallible event' ended after running for 15.396502ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #188 for non_future/non_fallible event' ended after running for 15.396232ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #189 for non_future/non_fallible event' ended after running for 15.408864ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #190 for non_future/non_fallible event' ended after running for 15.421765ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #191 for non_future/non_fallible event' ended after running for 15.433114ms -- stats: | ok: 1 events 2023-03-02T14:17:06.788Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #192 for non_future/non_fallible event' ended after running for 15.443465ms -- stats: | ok: 1 events 2023-03-02T14:17:06.794Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #193 for non_future/non_fallible event' ended after running for 21.392909ms -- stats: | ok: 1 events 2023-03-02T14:17:06.794Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #194 for non_future/non_fallible event' ended after running for 21.458704ms -- stats: | ok: 1 events 2023-03-02T14:17:06.794Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #195 for non_future/non_fallible event' ended after running for 21.476809ms -- stats: | ok: 1 events 2023-03-02T14:17:06.794Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #196 for non_future/non_fallible event' ended after running for 21.491174ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #197 for non_future/non_fallible event' ended after running for 21.502368ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #198 for non_future/non_fallible event' ended after running for 21.512493ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #199 for non_future/non_fallible event' ended after running for 21.525079ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #200 for non_future/non_fallible event' ended after running for 21.536934ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #201 for non_future/non_fallible event' ended after running for 21.548769ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #202 for non_future/non_fallible event' ended after running for 21.562463ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #203 for non_future/non_fallible event' ended after running for 21.572348ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #204 for non_future/non_fallible event' ended after running for 21.583676ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #205 for non_future/non_fallible event' ended after running for 21.588543ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #206 for non_future/non_fallible event' ended after running for 21.601686ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #207 for non_future/non_fallible event' ended after running for 21.61366ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #208 for non_future/non_fallible event' ended after running for 21.62329ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #209 for non_future/non_fallible event' ended after running for 21.601776ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #210 for non_future/non_fallible event' ended after running for 21.620909ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #211 for non_future/non_fallible event' ended after running for 21.633977ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #212 for non_future/non_fallible event' ended after running for 21.645921ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #213 for non_future/non_fallible event' ended after running for 21.657515ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #214 for non_future/non_fallible event' ended after running for 21.669085ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #215 for non_future/non_fallible event' ended after running for 21.679565ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #216 for non_future/non_fallible event' ended after running for 21.692498ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #217 for non_future/non_fallible event' ended after running for 21.706408ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #218 for non_future/non_fallible event' ended after running for 21.742713ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #219 for non_future/non_fallible event' ended after running for 21.754669ms -- stats: | ok: 1 events 2023-03-02T14:17:06.795Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #220 for non_future/non_fallible event' ended after running for 21.767701ms -- stats: | ok: 1 events 2023-03-02T14:17:06.796Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #221 for non_future/non_fallible event' ended after running for 21.780818ms -- stats: | ok: 1 events 2023-03-02T14:17:06.796Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #222 for non_future/non_fallible event' ended after running for 21.786769ms -- stats: | ok: 1 events 2023-03-02T14:17:06.796Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #223 for non_future/non_fallible event' ended after running for 21.79564ms -- stats: | ok: 1 events 2023-03-02T14:17:06.796Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #224 for non_future/non_fallible event' ended after running for 21.807877ms -- stats: | ok: 1 events 2023-03-02T14:17:06.796Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #225 for non_future/non_fallible event' ended after running for 21.820663ms -- stats: | ok: 1 events 2023-03-02T14:17:06.796Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #226 for non_future/non_fallible event' ended after running for 21.832388ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #227 for non_future/non_fallible event' ended after running for 26.028934ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #228 for non_future/non_fallible event' ended after running for 26.070428ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #229 for non_future/non_fallible event' ended after running for 26.083325ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #230 for non_future/non_fallible event' ended after running for 26.095907ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #231 for non_future/non_fallible event' ended after running for 26.107752ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #232 for non_future/non_fallible event' ended after running for 26.122227ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #233 for non_future/non_fallible event' ended after running for 26.134453ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #234 for non_future/non_fallible event' ended after running for 26.144895ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #235 for non_future/non_fallible event' ended after running for 26.155937ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #236 for non_future/non_fallible event' ended after running for 26.169817ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #237 for non_future/non_fallible event' ended after running for 26.21698ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #238 for non_future/non_fallible event' ended after running for 26.230237ms -- stats: | ok: 1 events 2023-03-02T14:17:06.800Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #239 for non_future/non_fallible event' ended after running for 26.234819ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #240 for non_future/non_fallible event' ended after running for 26.247149ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #241 for non_future/non_fallible event' ended after running for 26.25941ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #242 for non_future/non_fallible event' ended after running for 26.271942ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #243 for non_future/non_fallible event' ended after running for 26.258037ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #244 for non_future/non_fallible event' ended after running for 26.301696ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #245 for non_future/non_fallible event' ended after running for 26.313646ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #246 for non_future/non_fallible event' ended after running for 26.327811ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #247 for non_future/non_fallible event' ended after running for 26.340027ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #248 for non_future/non_fallible event' ended after running for 26.349064ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #249 for non_future/non_fallible event' ended after running for 26.359686ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #250 for non_future/non_fallible event' ended after running for 26.372588ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #251 for non_future/non_fallible event' ended after running for 26.384979ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #252 for non_future/non_fallible event' ended after running for 26.397105ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #253 for non_future/non_fallible event' ended after running for 26.410147ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #254 for non_future/non_fallible event' ended after running for 26.421406ms -- stats: | ok: 1 events 2023-03-02T14:17:06.801Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event: Pipeline #255 for non_future/non_fallible event' ended after running for 26.432704ms -- stats: | ok: 1 events 2023-03-02T14:17:06.810Z 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-02T14:17:06.810Z 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-02T14:17:06.810Z 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-02T14:17:06.810Z 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-02T14:17:06.810Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.816Z 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-02T14:17:06.817Z 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-02T14:17:06.817Z 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-02T14:17:06.817Z 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-02T14:17:06.817Z 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-02T14:17:06.817Z 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-02T14:17:06.817Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.818Z 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-02T14:17:06.819Z 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-02T14:17:06.821Z 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-02T14:17:06.821Z 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-02T14:17:06.821Z 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-02T14:17:06.821Z 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-02T14:17:06.821Z 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-02T14:17:06.821Z 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-02T14:17:06.821Z 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-02T14:17:06.821Z 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-02T14:17:06.821Z 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-02T14:17:06.821Z 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-02T14:17:06.821Z 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-02T14:17:06.821Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.825Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.826Z 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-02T14:17:06.833Z 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-02T14:17:06.833Z 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-02T14:17:06.833Z 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-02T14:17:06.833Z 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-02T14:17:06.833Z 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-02T14:17:06.833Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.834Z 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-02T14:17:06.835Z 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-02T14:17:06.835Z 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-02T14:17:06.835Z 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-02T14:17:06.835Z 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-02T14:17:06.835Z 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-02T14:17:06.835Z 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-02T14:17:06.835Z 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-02T14:17:06.839Z 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-02T14:17:06.839Z 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-02T14:17:06.839Z 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-02T14:17:06.839Z 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-02T14:17:06.839Z 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-02T14:17:06.839Z 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-02T14:17:06.839Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.840Z 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-02T14:17:06.841Z 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-02T14:17:06.841Z 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-02T14:17:06.841Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.846Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.847Z 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-02T14:17:06.852Z 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-02T14:17:06.852Z 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-02T14:17:06.852Z 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-02T14:17:06.852Z 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-02T14:17:06.852Z 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-02T14:17:06.852Z 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-02T14:17:06.852Z 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-02T14:17:06.852Z 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-02T14:17:06.852Z 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-02T14:17:06.852Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.853Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.859Z 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-02T14:17:06.986Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #122 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.59267ms 2023-03-02T14:17:06.986Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #123 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.677071ms 2023-03-02T14:17:06.986Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #124 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.727251ms 2023-03-02T14:17:06.986Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #125 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.772008ms 2023-03-02T14:17:06.987Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #126 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.776024ms 2023-03-02T14:17:06.987Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #127 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.170299ms 2023-03-02T14:17:06.988Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #128 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.594675ms 2023-03-02T14:17:06.988Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #129 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.886901ms 2023-03-02T14:17:06.988Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #130 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.251187ms 2023-03-02T14:17:06.989Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #131 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.754896ms 2023-03-02T14:17:06.989Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #132 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.107252ms 2023-03-02T14:17:06.990Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #133 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.431066ms 2023-03-02T14:17:06.990Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #134 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.897162ms 2023-03-02T14:17:06.991Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #135 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.442179ms 2023-03-02T14:17:06.991Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #136 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.752309ms 2023-03-02T14:17:06.991Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #137 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.005673ms 2023-03-02T14:17:06.992Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #138 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.392986ms 2023-03-02T14:17:06.992Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #139 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.879001ms 2023-03-02T14:17:06.993Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #140 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.155723ms 2023-03-02T14:17:06.993Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #141 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.501928ms 2023-03-02T14:17:06.993Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #142 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.81065ms 2023-03-02T14:17:06.994Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #143 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.326745ms 2023-03-02T14:17:06.994Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #144 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.827132ms 2023-03-02T14:17:06.995Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #145 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.292495ms 2023-03-02T14:17:06.995Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #146 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.785959ms 2023-03-02T14:17:06.996Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #147 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.121563ms 2023-03-02T14:17:06.996Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #148 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.198891ms 2023-03-02T14:17:06.996Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #149 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.440555ms 2023-03-02T14:17:06.997Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #150 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.761668ms 2023-03-02T14:17:06.997Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #151 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.154189ms 2023-03-02T14:17:06.998Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #152 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.642836ms 2023-03-02T14:17:06.998Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #153 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.121177ms 2023-03-02T14:17:06.998Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #154 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.515818ms 2023-03-02T14:17:06.999Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #155 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.813528ms 2023-03-02T14:17:06.999Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #156 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.060615ms 2023-03-02T14:17:06.999Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #157 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.302044ms 2023-03-02T14:17:07.000Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #158 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 58.777397ms 2023-03-02T14:17:07.000Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #159 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.181167ms 2023-03-02T14:17:07.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #160 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 59.653588ms 2023-03-02T14:17:07.001Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #161 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.238921ms 2023-03-02T14:17:07.002Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #162 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.786084ms 2023-03-02T14:17:07.002Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #163 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.202365ms 2023-03-02T14:17:07.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #164 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.706029ms 2023-03-02T14:17:07.003Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #165 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.233217ms 2023-03-02T14:17:07.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #166 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.663548ms 2023-03-02T14:17:07.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #167 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.000571ms 2023-03-02T14:17:07.004Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #168 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.297899ms 2023-03-02T14:17:07.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #169 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.64837ms 2023-03-02T14:17:07.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #170 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.961553ms 2023-03-02T14:17:07.005Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #171 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.267598ms 2023-03-02T14:17:07.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #172 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.50236ms 2023-03-02T14:17:07.006Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #173 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.952776ms 2023-03-02T14:17:07.007Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #174 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 60.414581ms 2023-03-02T14:17:07.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #175 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.141317ms 2023-03-02T14:17:07.008Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #176 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 61.729713ms 2023-03-02T14:17:07.009Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #177 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.381909ms 2023-03-02T14:17:07.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #178 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 62.974009ms 2023-03-02T14:17:07.010Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #179 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 63.553247ms 2023-03-02T14:17:07.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #180 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.194145ms 2023-03-02T14:17:07.011Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #181 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 64.652526ms 2023-03-02T14:17:07.012Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #182 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.055343ms 2023-03-02T14:17:07.012Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #183 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.36812ms 2023-03-02T14:17:07.012Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #184 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 65.675343ms 2023-03-02T14:17:07.013Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #185 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.105508ms 2023-03-02T14:17:07.013Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #186 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.363634ms 2023-03-02T14:17:07.013Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #187 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.620701ms 2023-03-02T14:17:07.014Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #188 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 66.969528ms 2023-03-02T14:17:07.014Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #189 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.261814ms 2023-03-02T14:17:07.014Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #190 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.509518ms 2023-03-02T14:17:07.015Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #191 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.862797ms 2023-03-02T14:17:07.015Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #192 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.256175ms 2023-03-02T14:17:07.015Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #193 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.69231ms 2023-03-02T14:17:07.016Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #194 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.318767ms 2023-03-02T14:17:07.017Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #195 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.828391ms 2023-03-02T14:17:07.017Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #196 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.316697ms 2023-03-02T14:17:07.018Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #197 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.784321ms 2023-03-02T14:17:07.018Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #198 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.377724ms 2023-03-02T14:17:07.018Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #199 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.495519ms 2023-03-02T14:17:07.019Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #200 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.062431ms 2023-03-02T14:17:07.019Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #201 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.346972ms 2023-03-02T14:17:07.019Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #202 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.425744ms 2023-03-02T14:17:07.020Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #203 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.363288ms 2023-03-02T14:17:07.021Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #204 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.81615ms 2023-03-02T14:17:07.021Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #205 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.172015ms 2023-03-02T14:17:07.021Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #206 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.250216ms 2023-03-02T14:17:07.021Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #207 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.294637ms 2023-03-02T14:17:07.021Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #208 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.74033ms 2023-03-02T14:17:07.021Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #209 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.780646ms 2023-03-02T14:17:07.021Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #210 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.824371ms 2023-03-02T14:17:07.021Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #211 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 67.868115ms 2023-03-02T14:17:07.022Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #212 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.755328ms 2023-03-02T14:17:07.023Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #213 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.072822ms 2023-03-02T14:17:07.023Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #214 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.332461ms 2023-03-02T14:17:07.023Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #215 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.573113ms 2023-03-02T14:17:07.023Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #216 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.643935ms 2023-03-02T14:17:07.023Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #217 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.687814ms 2023-03-02T14:17:07.023Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #218 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.731694ms 2023-03-02T14:17:07.023Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #219 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.66406ms 2023-03-02T14:17:07.023Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #220 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.707288ms 2023-03-02T14:17:07.023Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #221 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 68.748792ms 2023-03-02T14:17:07.024Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #222 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.837268ms 2023-03-02T14:17:07.025Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #223 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.343338ms 2023-03-02T14:17:07.025Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #224 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.462972ms 2023-03-02T14:17:07.026Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #225 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.922937ms 2023-03-02T14:17:07.026Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #226 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.992436ms 2023-03-02T14:17:07.026Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #227 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.037925ms 2023-03-02T14:17:07.026Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #228 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.086842ms 2023-03-02T14:17:07.027Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #229 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.891835ms 2023-03-02T14:17:07.027Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #230 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.327529ms 2023-03-02T14:17:07.027Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #231 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.391699ms 2023-03-02T14:17:07.027Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #232 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.441895ms 2023-03-02T14:17:07.027Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #233 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.491609ms 2023-03-02T14:17:07.027Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #234 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.544762ms 2023-03-02T14:17:07.027Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #235 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.59379ms 2023-03-02T14:17:07.027Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #236 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.641233ms 2023-03-02T14:17:07.027Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #237 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.690456ms 2023-03-02T14:17:07.029Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #238 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.260948ms 2023-03-02T14:17:07.029Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #239 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.778958ms 2023-03-02T14:17:07.030Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #240 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.918411ms 2023-03-02T14:17:07.030Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #241 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.983649ms 2023-03-02T14:17:07.030Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #0 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 69.869759ms 2023-03-02T14:17:07.031Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #1 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.402742ms 2023-03-02T14:17:07.031Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #2 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 70.935098ms 2023-03-02T14:17:07.031Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #3 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.096566ms 2023-03-02T14:17:07.032Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #4 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.159975ms 2023-03-02T14:17:07.032Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #5 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.18818ms 2023-03-02T14:17:07.032Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #6 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.237313ms 2023-03-02T14:17:07.032Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #7 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.281985ms 2023-03-02T14:17:07.032Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #8 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.327819ms 2023-03-02T14:17:07.033Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #9 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 71.370316ms 2023-03-02T14:17:07.033Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #10 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.460461ms 2023-03-02T14:17:07.033Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #11 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.746441ms 2023-03-02T14:17:07.033Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #12 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.818055ms 2023-03-02T14:17:07.033Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #13 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.865509ms 2023-03-02T14:17:07.033Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #14 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.90784ms 2023-03-02T14:17:07.033Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #15 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 72.989664ms 2023-03-02T14:17:07.033Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #16 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.033278ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #17 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.077754ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #18 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.119669ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #19 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.161263ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #20 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.273368ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #43 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.226687ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #44 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.272331ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #45 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.317318ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #46 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.358797ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #47 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.357714ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #48 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.403158ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #242 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.778958ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #243 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.820973ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #244 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.863248ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #245 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.921559ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #246 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 73.962968ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #247 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.006772ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #248 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.080742ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #249 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.139113ms 2023-03-02T14:17:07.034Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #250 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.177559ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #251 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.212196ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #252 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.246787ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #253 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.282812ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #254 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.317394ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #255 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.351694ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #21 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.267734ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #22 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.304702ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #23 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.340206ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #24 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.374476ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #25 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.409454ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #26 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.445003ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #27 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.479714ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #28 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.521258ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #29 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.55777ms 2023-03-02T14:17:07.035Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #30 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 74.594201ms 2023-03-02T14:17:07.039Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #31 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 78.579454ms 2023-03-02T14:17:07.039Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #32 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 78.978041ms 2023-03-02T14:17:07.040Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #33 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 79.386096ms 2023-03-02T14:17:07.040Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #34 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 79.809459ms 2023-03-02T14:17:07.041Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #35 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 80.192156ms 2023-03-02T14:17:07.041Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #36 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 80.419845ms 2023-03-02T14:17:07.041Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #37 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 80.628607ms 2023-03-02T14:17:07.041Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #38 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 80.860171ms 2023-03-02T14:17:07.042Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #39 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 81.088306ms 2023-03-02T14:17:07.042Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #40 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 81.300196ms 2023-03-02T14:17:07.042Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #41 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 81.507053ms 2023-03-02T14:17:07.042Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #42 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 81.709675ms 2023-03-02T14:17:07.042Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #49 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 81.882487ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #50 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.094933ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #51 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.155319ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #52 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.191048ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #53 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.227354ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #54 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.263344ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #55 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.298492ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #56 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.332512ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #57 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.3675ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #58 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.403745ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #59 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.438988ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #60 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.472562ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #61 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.508412ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #62 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.54353ms 2023-03-02T14:17:07.043Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #63 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 82.578773ms 2023-03-02T14:17:07.044Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #64 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 83.4418ms 2023-03-02T14:17:07.044Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #65 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 83.493384ms 2023-03-02T14:17:07.044Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #66 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 83.587951ms 2023-03-02T14:17:07.044Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #67 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 83.77176ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #68 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 83.903745ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #69 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 83.95779ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #70 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 83.998036ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #71 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.038703ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #72 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.078928ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #73 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.11977ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #74 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.15955ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #75 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.201394ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #76 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.240983ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #77 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.27949ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #78 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.317825ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #79 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.429164ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #80 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.481525ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #81 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.527745ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #82 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.585896ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #83 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.674151ms 2023-03-02T14:17:07.045Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #84 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.714131ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #85 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.75354ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #86 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.789921ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #87 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.90978ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #88 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 84.970552ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #89 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.013374ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #90 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.055941ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #91 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.158663ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #92 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.216262ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #93 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.258713ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #94 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.299204ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #95 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.338748ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #96 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.377144ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #97 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.416452ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #98 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.456948ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #99 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.501099ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #100 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.601961ms 2023-03-02T14:17:07.046Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #101 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.651775ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #102 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.757966ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #103 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.818292ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #104 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.86768ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #105 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.9114ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #106 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.949715ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #107 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 85.987179ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #108 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.016798ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #109 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.055405ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #110 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.092347ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #111 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.207029ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #112 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.266071ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #113 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.308858ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #114 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.350422ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #115 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.450116ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #116 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.543796ms 2023-03-02T14:17:07.047Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #117 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.588748ms 2023-03-02T14:17:07.048Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #118 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.639259ms 2023-03-02T14:17:07.048Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #119 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.679941ms 2023-03-02T14:17:07.048Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #120 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.720628ms 2023-03-02T14:17:07.048Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #121 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 86.76144ms 2023-03-02T14:17:07.138Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #122 for future & fallible event' TIMED OUT after 151.867866ms 2023-03-02T14:17:07.138Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #123 for future & fallible event' TIMED OUT after 151.893219ms 2023-03-02T14:17:07.138Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #124 for future & fallible event' TIMED OUT after 151.891299ms 2023-03-02T14:17:07.138Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #125 for future & fallible event' TIMED OUT after 151.012833ms 2023-03-02T14:17:07.138Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #126 for future & fallible event' TIMED OUT after 150.709144ms 2023-03-02T14:17:07.139Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #127 for future & fallible event' TIMED OUT after 151.685249ms 2023-03-02T14:17:07.140Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #128 for future & fallible event' TIMED OUT after 151.56147ms 2023-03-02T14:17:07.140Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #129 for future & fallible event' TIMED OUT after 151.259094ms 2023-03-02T14:17:07.140Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #130 for future & fallible event' TIMED OUT after 150.895219ms 2023-03-02T14:17:07.140Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #131 for future & fallible event' TIMED OUT after 150.586387ms 2023-03-02T14:17:07.140Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #132 for future & fallible event' TIMED OUT after 150.296211ms 2023-03-02T14:17:07.141Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #133 for future & fallible event' TIMED OUT after 151.338312ms 2023-03-02T14:17:07.143Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #134 for future & fallible event' TIMED OUT after 151.93559ms 2023-03-02T14:17:07.143Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #135 for future & fallible event' TIMED OUT after 151.942628ms 2023-03-02T14:17:07.143Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #136 for future & fallible event' TIMED OUT after 151.906708ms 2023-03-02T14:17:07.143Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #137 for future & fallible event' TIMED OUT after 151.789565ms 2023-03-02T14:17:07.144Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #138 for future & fallible event' TIMED OUT after 151.582648ms 2023-03-02T14:17:07.144Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #139 for future & fallible event' TIMED OUT after 151.593385ms 2023-03-02T14:17:07.145Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #140 for future & fallible event' TIMED OUT after 151.445685ms 2023-03-02T14:17:07.145Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #141 for future & fallible event' TIMED OUT after 151.359971ms 2023-03-02T14:17:07.145Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #142 for future & fallible event' TIMED OUT after 151.179104ms 2023-03-02T14:17:07.145Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #143 for future & fallible event' TIMED OUT after 150.948452ms 2023-03-02T14:17:07.146Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #144 for future & fallible event' TIMED OUT after 150.927861ms 2023-03-02T14:17:07.146Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #145 for future & fallible event' TIMED OUT after 150.752733ms 2023-03-02T14:17:07.147Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #146 for future & fallible event' TIMED OUT after 150.941866ms 2023-03-02T14:17:07.147Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #147 for future & fallible event' TIMED OUT after 151.017259ms 2023-03-02T14:17:07.147Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #148 for future & fallible event' TIMED OUT after 151.109916ms 2023-03-02T14:17:07.148Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #149 for future & fallible event' TIMED OUT after 151.249204ms 2023-03-02T14:17:07.148Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #150 for future & fallible event' TIMED OUT after 151.214693ms 2023-03-02T14:17:07.149Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #151 for future & fallible event' TIMED OUT after 151.073069ms 2023-03-02T14:17:07.149Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #152 for future & fallible event' TIMED OUT after 150.940913ms 2023-03-02T14:17:07.149Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #153 for future & fallible event' TIMED OUT after 150.803379ms 2023-03-02T14:17:07.150Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #154 for future & fallible event' TIMED OUT after 150.869349ms 2023-03-02T14:17:07.150Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #155 for future & fallible event' TIMED OUT after 150.873585ms 2023-03-02T14:17:07.150Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #156 for future & fallible event' TIMED OUT after 150.83576ms 2023-03-02T14:17:07.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #157 for future & fallible event' TIMED OUT after 151.962693ms 2023-03-02T14:17:07.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #158 for future & fallible event' TIMED OUT after 151.855866ms 2023-03-02T14:17:07.152Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #159 for future & fallible event' TIMED OUT after 151.794628ms 2023-03-02T14:17:07.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #160 for future & fallible event' TIMED OUT after 151.647074ms 2023-03-02T14:17:07.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #161 for future & fallible event' TIMED OUT after 151.361916ms 2023-03-02T14:17:07.153Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #162 for future & fallible event' TIMED OUT after 151.346212ms 2023-03-02T14:17:07.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #163 for future & fallible event' TIMED OUT after 151.334988ms 2023-03-02T14:17:07.154Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #164 for future & fallible event' TIMED OUT after 151.207605ms 2023-03-02T14:17:07.155Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #165 for future & fallible event' TIMED OUT after 151.446272ms 2023-03-02T14:17:07.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #166 for future & fallible event' TIMED OUT after 151.567224ms 2023-03-02T14:17:07.156Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #167 for future & fallible event' TIMED OUT after 151.65757ms 2023-03-02T14:17:07.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #168 for future & fallible event' TIMED OUT after 151.929635ms 2023-03-02T14:17:07.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #169 for future & fallible event' TIMED OUT after 152.02572ms 2023-03-02T14:17:07.157Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #170 for future & fallible event' TIMED OUT after 152.055189ms 2023-03-02T14:17:07.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #171 for future & fallible event' TIMED OUT after 152.434728ms 2023-03-02T14:17:07.158Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #172 for future & fallible event' TIMED OUT after 152.424297ms 2023-03-02T14:17:07.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #173 for future & fallible event' TIMED OUT after 152.088422ms 2023-03-02T14:17:07.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #174 for future & fallible event' TIMED OUT after 151.373485ms 2023-03-02T14:17:07.159Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #175 for future & fallible event' TIMED OUT after 151.05763ms 2023-03-02T14:17:07.160Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #176 for future & fallible event' TIMED OUT after 150.782292ms 2023-03-02T14:17:07.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #177 for future & fallible event' TIMED OUT after 152.755465ms 2023-03-02T14:17:07.162Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #178 for future & fallible event' TIMED OUT after 152.371019ms 2023-03-02T14:17:07.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #179 for future & fallible event' TIMED OUT after 151.779054ms 2023-03-02T14:17:07.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #180 for future & fallible event' TIMED OUT after 151.392803ms 2023-03-02T14:17:07.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #181 for future & fallible event' TIMED OUT after 151.276482ms 2023-03-02T14:17:07.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #182 for future & fallible event' TIMED OUT after 151.048673ms 2023-03-02T14:17:07.163Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #183 for future & fallible event' TIMED OUT after 150.827039ms 2023-03-02T14:17:07.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #184 for future & fallible event' TIMED OUT after 152.031981ms 2023-03-02T14:17:07.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #185 for future & fallible event' TIMED OUT after 151.884472ms 2023-03-02T14:17:07.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #186 for future & fallible event' TIMED OUT after 151.681685ms 2023-03-02T14:17:07.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #187 for future & fallible event' TIMED OUT after 151.378753ms 2023-03-02T14:17:07.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #188 for future & fallible event' TIMED OUT after 151.120883ms 2023-03-02T14:17:07.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #189 for future & fallible event' TIMED OUT after 150.907044ms 2023-03-02T14:17:07.165Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #190 for future & fallible event' TIMED OUT after 150.60378ms 2023-03-02T14:17:07.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #191 for future & fallible event' TIMED OUT after 151.798472ms 2023-03-02T14:17:07.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #192 for future & fallible event' TIMED OUT after 151.470903ms 2023-03-02T14:17:07.167Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #193 for future & fallible event' TIMED OUT after 150.838527ms 2023-03-02T14:17:07.169Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #194 for future & fallible event' TIMED OUT after 152.133475ms 2023-03-02T14:17:07.169Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #195 for future & fallible event' TIMED OUT after 151.948232ms 2023-03-02T14:17:07.169Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #196 for future & fallible event' TIMED OUT after 151.568146ms 2023-03-02T14:17:07.169Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #197 for future & fallible event' TIMED OUT after 151.064257ms 2023-03-02T14:17:07.169Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #198 for future & fallible event' TIMED OUT after 151.012362ms 2023-03-02T14:17:07.169Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #199 for future & fallible event' TIMED OUT after 151.064863ms 2023-03-02T14:17:07.170Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #200 for future & fallible event' TIMED OUT after 150.726001ms 2023-03-02T14:17:07.170Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #201 for future & fallible event' TIMED OUT after 151.205615ms 2023-03-02T14:17:07.171Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #202 for future & fallible event' TIMED OUT after 150.47546ms 2023-03-02T14:17:07.172Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #203 for future & fallible event' TIMED OUT after 151.644593ms 2023-03-02T14:17:07.173Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #204 for future & fallible event' TIMED OUT after 152.073299ms 2023-03-02T14:17:07.173Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #205 for future & fallible event' TIMED OUT after 152.35175ms 2023-03-02T14:17:07.174Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #206 for future & fallible event' TIMED OUT after 152.561219ms 2023-03-02T14:17:07.174Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #207 for future & fallible event' TIMED OUT after 152.723846ms 2023-03-02T14:17:07.174Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #208 for future & fallible event' TIMED OUT after 152.877339ms 2023-03-02T14:17:07.174Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #209 for future & fallible event' TIMED OUT after 153.048482ms 2023-03-02T14:17:07.175Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #210 for future & fallible event' TIMED OUT after 153.316152ms 2023-03-02T14:17:07.175Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #211 for future & fallible event' TIMED OUT after 153.736137ms 2023-03-02T14:17:07.175Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #212 for future & fallible event' TIMED OUT after 152.947675ms 2023-03-02T14:17:07.176Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #213 for future & fallible event' TIMED OUT after 152.942111ms 2023-03-02T14:17:07.176Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #214 for future & fallible event' TIMED OUT after 153.006347ms 2023-03-02T14:17:07.176Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #215 for future & fallible event' TIMED OUT after 153.237936ms 2023-03-02T14:17:07.177Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #216 for future & fallible event' TIMED OUT after 153.489831ms 2023-03-02T14:17:07.177Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #217 for future & fallible event' TIMED OUT after 153.65571ms 2023-03-02T14:17:07.177Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #218 for future & fallible event' TIMED OUT after 153.801525ms 2023-03-02T14:17:07.177Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #219 for future & fallible event' TIMED OUT after 153.944603ms 2023-03-02T14:17:07.177Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #220 for future & fallible event' TIMED OUT after 154.125841ms 2023-03-02T14:17:07.178Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #221 for future & fallible event' TIMED OUT after 153.263896ms 2023-03-02T14:17:07.178Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #222 for future & fallible event' TIMED OUT after 153.16934ms 2023-03-02T14:17:07.178Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #223 for future & fallible event' TIMED OUT after 153.281104ms 2023-03-02T14:17:07.179Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #224 for future & fallible event' TIMED OUT after 153.091751ms 2023-03-02T14:17:07.179Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #225 for future & fallible event' TIMED OUT after 153.227329ms 2023-03-02T14:17:07.179Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #226 for future & fallible event' TIMED OUT after 153.418081ms 2023-03-02T14:17:07.179Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #227 for future & fallible event' TIMED OUT after 153.62969ms 2023-03-02T14:17:07.180Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #228 for future & fallible event' TIMED OUT after 153.168502ms 2023-03-02T14:17:07.180Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #229 for future & fallible event' TIMED OUT after 153.024001ms 2023-03-02T14:17:07.180Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #230 for future & fallible event' TIMED OUT after 153.191144ms 2023-03-02T14:17:07.181Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #231 for future & fallible event' TIMED OUT after 153.453771ms 2023-03-02T14:17:07.181Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #232 for future & fallible event' TIMED OUT after 153.693405ms 2023-03-02T14:17:07.181Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #233 for future & fallible event' TIMED OUT after 154.023355ms 2023-03-02T14:17:07.182Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #234 for future & fallible event' TIMED OUT after 154.330708ms 2023-03-02T14:17:07.182Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #235 for future & fallible event' TIMED OUT after 154.581901ms 2023-03-02T14:17:07.182Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #236 for future & fallible event' TIMED OUT after 154.765114ms 2023-03-02T14:17:07.183Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #237 for future & fallible event' TIMED OUT after 153.72542ms 2023-03-02T14:17:07.183Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #238 for future & fallible event' TIMED OUT after 153.5814ms 2023-03-02T14:17:07.183Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #239 for future & fallible event' TIMED OUT after 153.666197ms 2023-03-02T14:17:07.184Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #240 for future & fallible event' TIMED OUT after 153.859821ms 2023-03-02T14:17:07.184Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #241 for future & fallible event' TIMED OUT after 153.594031ms 2023-03-02T14:17:07.184Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #0 for future & fallible event' TIMED OUT after 153.785841ms 2023-03-02T14:17:07.184Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #1 for future & fallible event' TIMED OUT after 153.036147ms 2023-03-02T14:17:07.185Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #2 for future & fallible event' TIMED OUT after 153.11554ms 2023-03-02T14:17:07.185Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #3 for future & fallible event' TIMED OUT after 153.315831ms 2023-03-02T14:17:07.185Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #4 for future & fallible event' TIMED OUT after 153.486658ms 2023-03-02T14:17:07.185Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #5 for future & fallible event' TIMED OUT after 153.607044ms 2023-03-02T14:17:07.185Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #6 for future & fallible event' TIMED OUT after 153.742487ms 2023-03-02T14:17:07.186Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #7 for future & fallible event' TIMED OUT after 153.864352ms 2023-03-02T14:17:07.186Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #8 for future & fallible event' TIMED OUT after 153.972477ms 2023-03-02T14:17:07.186Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #9 for future & fallible event' TIMED OUT after 153.222903ms 2023-03-02T14:17:07.186Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #10 for future & fallible event' TIMED OUT after 153.132187ms 2023-03-02T14:17:07.186Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #11 for future & fallible event' TIMED OUT after 153.247811ms 2023-03-02T14:17:07.187Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #12 for future & fallible event' TIMED OUT after 153.432407ms 2023-03-02T14:17:07.187Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #13 for future & fallible event' TIMED OUT after 153.558106ms 2023-03-02T14:17:07.187Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #14 for future & fallible event' TIMED OUT after 153.635495ms 2023-03-02T14:17:07.187Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #15 for future & fallible event' TIMED OUT after 153.74567ms 2023-03-02T14:17:07.187Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #16 for future & fallible event' TIMED OUT after 153.872608ms 2023-03-02T14:17:07.188Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #17 for future & fallible event' TIMED OUT after 154.000783ms 2023-03-02T14:17:07.188Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #18 for future & fallible event' TIMED OUT after 154.113375ms 2023-03-02T14:17:07.188Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #19 for future & fallible event' TIMED OUT after 154.221796ms 2023-03-02T14:17:07.188Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #20 for future & fallible event' TIMED OUT after 154.258678ms 2023-03-02T14:17:07.188Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #43 for future & fallible event' TIMED OUT after 154.366603ms 2023-03-02T14:17:07.188Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #44 for future & fallible event' TIMED OUT after 154.477144ms 2023-03-02T14:17:07.189Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #45 for future & fallible event' TIMED OUT after 154.63759ms 2023-03-02T14:17:07.189Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #46 for future & fallible event' TIMED OUT after 154.81742ms 2023-03-02T14:17:07.189Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #47 for future & fallible event' TIMED OUT after 154.994177ms 2023-03-02T14:17:07.189Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #48 for future & fallible event' TIMED OUT after 155.174237ms 2023-03-02T14:17:07.190Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #242 for future & fallible event' TIMED OUT after 155.407926ms 2023-03-02T14:17:07.190Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #243 for future & fallible event' TIMED OUT after 155.634192ms 2023-03-02T14:17:07.190Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #244 for future & fallible event' TIMED OUT after 155.812538ms 2023-03-02T14:17:07.190Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #245 for future & fallible event' TIMED OUT after 155.972939ms 2023-03-02T14:17:07.191Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #246 for future & fallible event' TIMED OUT after 156.22757ms 2023-03-02T14:17:07.191Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #247 for future & fallible event' TIMED OUT after 156.412703ms 2023-03-02T14:17:07.191Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #248 for future & fallible event' TIMED OUT after 156.552663ms 2023-03-02T14:17:07.191Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #249 for future & fallible event' TIMED OUT after 156.808192ms 2023-03-02T14:17:07.192Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #250 for future & fallible event' TIMED OUT after 157.103144ms 2023-03-02T14:17:07.192Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #251 for future & fallible event' TIMED OUT after 157.327961ms 2023-03-02T14:17:07.192Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #252 for future & fallible event' TIMED OUT after 157.54742ms 2023-03-02T14:17:07.192Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #253 for future & fallible event' TIMED OUT after 157.746718ms 2023-03-02T14:17:07.193Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #254 for future & fallible event' TIMED OUT after 157.958904ms 2023-03-02T14:17:07.193Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #255 for future & fallible event' TIMED OUT after 158.143114ms 2023-03-02T14:17:07.193Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #21 for future & fallible event' TIMED OUT after 158.313721ms 2023-03-02T14:17:07.193Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #22 for future & fallible event' TIMED OUT after 158.499485ms 2023-03-02T14:17:07.194Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #23 for future & fallible event' TIMED OUT after 158.741555ms 2023-03-02T14:17:07.194Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #24 for future & fallible event' TIMED OUT after 158.983185ms 2023-03-02T14:17:07.194Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #25 for future & fallible event' TIMED OUT after 159.150944ms 2023-03-02T14:17:07.194Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #26 for future & fallible event' TIMED OUT after 159.329591ms 2023-03-02T14:17:07.195Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #27 for future & fallible event' TIMED OUT after 159.577936ms 2023-03-02T14:17:07.195Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #28 for future & fallible event' TIMED OUT after 159.760713ms 2023-03-02T14:17:07.195Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #29 for future & fallible event' TIMED OUT after 159.95314ms 2023-03-02T14:17:07.195Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #36 for future & fallible event' TIMED OUT after 154.257019ms 2023-03-02T14:17:07.196Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #37 for future & fallible event' TIMED OUT after 154.344733ms 2023-03-02T14:17:07.196Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #38 for future & fallible event' TIMED OUT after 154.337074ms 2023-03-02T14:17:07.196Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #39 for future & fallible event' TIMED OUT after 154.369069ms 2023-03-02T14:17:07.196Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #40 for future & fallible event' TIMED OUT after 154.384016ms 2023-03-02T14:17:07.197Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #41 for future & fallible event' TIMED OUT after 154.453269ms 2023-03-02T14:17:07.197Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #42 for future & fallible event' TIMED OUT after 154.544312ms 2023-03-02T14:17:07.197Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #49 for future & fallible event' TIMED OUT after 154.544663ms 2023-03-02T14:17:07.197Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #50 for future & fallible event' TIMED OUT after 154.725114ms 2023-03-02T14:17:07.198Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #51 for future & fallible event' TIMED OUT after 154.894462ms 2023-03-02T14:17:07.198Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #52 for future & fallible event' TIMED OUT after 155.074422ms 2023-03-02T14:17:07.198Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #53 for future & fallible event' TIMED OUT after 155.219731ms 2023-03-02T14:17:07.198Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #54 for future & fallible event' TIMED OUT after 155.396307ms 2023-03-02T14:17:07.199Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #55 for future & fallible event' TIMED OUT after 155.610879ms 2023-03-02T14:17:07.199Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #30 for future & fallible event' TIMED OUT after 159.744207ms 2023-03-02T14:17:07.199Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #31 for future & fallible event' TIMED OUT after 159.510764ms 2023-03-02T14:17:07.199Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #32 for future & fallible event' TIMED OUT after 159.258042ms 2023-03-02T14:17:07.199Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #33 for future & fallible event' TIMED OUT after 158.984438ms 2023-03-02T14:17:07.199Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #34 for future & fallible event' TIMED OUT after 158.779961ms 2023-03-02T14:17:07.200Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #35 for future & fallible event' TIMED OUT after 158.707094ms 2023-03-02T14:17:07.200Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #56 for future & fallible event' TIMED OUT after 156.783395ms 2023-03-02T14:17:07.200Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #57 for future & fallible event' TIMED OUT after 156.894062ms 2023-03-02T14:17:07.200Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #58 for future & fallible event' TIMED OUT after 157.016618ms 2023-03-02T14:17:07.200Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #59 for future & fallible event' TIMED OUT after 157.134999ms 2023-03-02T14:17:07.200Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #60 for future & fallible event' TIMED OUT after 157.279039ms 2023-03-02T14:17:07.201Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #61 for future & fallible event' TIMED OUT after 157.408132ms 2023-03-02T14:17:07.201Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #62 for future & fallible event' TIMED OUT after 157.532648ms 2023-03-02T14:17:07.201Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #63 for future & fallible event' TIMED OUT after 156.917059ms 2023-03-02T14:17:07.201Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #64 for future & fallible event' TIMED OUT after 157.022588ms 2023-03-02T14:17:07.201Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #65 for future & fallible event' TIMED OUT after 157.141029ms 2023-03-02T14:17:07.202Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #66 for future & fallible event' TIMED OUT after 157.21349ms 2023-03-02T14:17:07.202Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #67 for future & fallible event' TIMED OUT after 157.233646ms 2023-03-02T14:17:07.202Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #68 for future & fallible event' TIMED OUT after 157.370513ms 2023-03-02T14:17:07.202Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #69 for future & fallible event' TIMED OUT after 157.578798ms 2023-03-02T14:17:07.203Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #70 for future & fallible event' TIMED OUT after 157.815596ms 2023-03-02T14:17:07.203Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #71 for future & fallible event' TIMED OUT after 157.962277ms 2023-03-02T14:17:07.203Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #72 for future & fallible event' TIMED OUT after 158.177781ms 2023-03-02T14:17:07.203Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #73 for future & fallible event' TIMED OUT after 158.442768ms 2023-03-02T14:17:07.204Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #74 for future & fallible event' TIMED OUT after 158.676342ms 2023-03-02T14:17:07.204Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #75 for future & fallible event' TIMED OUT after 158.867926ms 2023-03-02T14:17:07.204Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #76 for future & fallible event' TIMED OUT after 159.045009ms 2023-03-02T14:17:07.204Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #77 for future & fallible event' TIMED OUT after 159.27154ms 2023-03-02T14:17:07.205Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #78 for future & fallible event' TIMED OUT after 159.481962ms 2023-03-02T14:17:07.205Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #79 for future & fallible event' TIMED OUT after 159.668408ms 2023-03-02T14:17:07.205Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #80 for future & fallible event' TIMED OUT after 159.808693ms 2023-03-02T14:17:07.205Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #81 for future & fallible event' TIMED OUT after 160.007761ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #82 for future & fallible event' TIMED OUT after 160.203034ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #83 for future & fallible event' TIMED OUT after 160.236232ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #84 for future & fallible event' TIMED OUT after 160.236543ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #85 for future & fallible event' TIMED OUT after 160.232864ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #86 for future & fallible event' TIMED OUT after 160.152333ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #87 for future & fallible event' TIMED OUT after 160.121741ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #88 for future & fallible event' TIMED OUT after 160.110613ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #89 for future & fallible event' TIMED OUT after 160.104162ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #90 for future & fallible event' TIMED OUT after 160.095039ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #91 for future & fallible event' TIMED OUT after 160.012368ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #92 for future & fallible event' TIMED OUT after 159.99937ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #93 for future & fallible event' TIMED OUT after 159.992002ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #94 for future & fallible event' TIMED OUT after 159.985606ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #95 for future & fallible event' TIMED OUT after 159.980678ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #96 for future & fallible event' TIMED OUT after 159.976593ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #97 for future & fallible event' TIMED OUT after 159.96937ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #98 for future & fallible event' TIMED OUT after 159.960894ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #99 for future & fallible event' TIMED OUT after 159.903009ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #100 for future & fallible event' TIMED OUT after 159.927972ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #101 for future & fallible event' TIMED OUT after 159.866257ms 2023-03-02T14:17:07.206Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #102 for future & fallible event' TIMED OUT after 159.837084ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #103 for future & fallible event' TIMED OUT after 159.81739ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #104 for future & fallible event' TIMED OUT after 159.814312ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #105 for future & fallible event' TIMED OUT after 159.806332ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #106 for future & fallible event' TIMED OUT after 159.801205ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #107 for future & fallible event' TIMED OUT after 159.796167ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #108 for future & fallible event' TIMED OUT after 159.790809ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #109 for future & fallible event' TIMED OUT after 159.787561ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #110 for future & fallible event' TIMED OUT after 159.711751ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #111 for future & fallible event' TIMED OUT after 159.684804ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #112 for future & fallible event' TIMED OUT after 159.67324ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #113 for future & fallible event' TIMED OUT after 159.66743ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #114 for future & fallible event' TIMED OUT after 159.660528ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #115 for future & fallible event' TIMED OUT after 159.544162ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #116 for future & fallible event' TIMED OUT after 159.525941ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #117 for future & fallible event' TIMED OUT after 159.508358ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #118 for future & fallible event' TIMED OUT after 159.502418ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #119 for future & fallible event' TIMED OUT after 159.496438ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #120 for future & fallible event' TIMED OUT after 159.490558ms 2023-03-02T14:17:07.207Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #121 for future & fallible event' TIMED OUT after 159.484438ms 2023-03-02T14:17:07.290Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #122 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.260339ms 2023-03-02T14:17:07.291Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #123 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.344986ms 2023-03-02T14:17:07.291Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #124 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.394941ms 2023-03-02T14:17:07.291Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #125 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.440149ms 2023-03-02T14:17:07.292Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #126 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.581161ms 2023-03-02T14:17:07.292Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #127 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.851372ms 2023-03-02T14:17:07.292Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #128 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.765091ms 2023-03-02T14:17:07.292Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #129 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.809382ms 2023-03-02T14:17:07.292Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #130 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.911267ms 2023-03-02T14:17:07.292Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #131 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.96863ms 2023-03-02T14:17:07.293Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #132 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.014585ms 2023-03-02T14:17:07.295Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #133 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.982655ms 2023-03-02T14:17:07.296Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #134 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.211227ms 2023-03-02T14:17:07.296Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #135 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.345036ms 2023-03-02T14:17:07.296Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #136 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.399663ms 2023-03-02T14:17:07.296Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #137 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.385026ms 2023-03-02T14:17:07.297Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #138 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.505597ms 2023-03-02T14:17:07.298Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #139 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.709778ms 2023-03-02T14:17:07.298Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #140 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.81082ms 2023-03-02T14:17:07.298Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #141 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.862675ms 2023-03-02T14:17:07.298Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #142 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.909447ms 2023-03-02T14:17:07.299Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #143 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.178229ms 2023-03-02T14:17:07.300Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #144 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.28665ms 2023-03-02T14:17:07.300Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #145 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.381457ms 2023-03-02T14:17:07.300Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #146 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.454435ms 2023-03-02T14:17:07.300Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #147 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.502289ms 2023-03-02T14:17:07.300Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #148 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.495357ms 2023-03-02T14:17:07.300Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #149 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.543462ms 2023-03-02T14:17:07.303Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #150 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.370304ms 2023-03-02T14:17:07.303Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #151 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.519688ms 2023-03-02T14:17:07.303Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #152 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.592585ms 2023-03-02T14:17:07.303Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #153 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.643943ms 2023-03-02T14:17:07.303Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #154 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.631487ms 2023-03-02T14:17:07.303Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #155 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.753392ms 2023-03-02T14:17:07.304Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #156 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.804214ms 2023-03-02T14:17:07.304Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #157 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.892379ms 2023-03-02T14:17:07.304Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #158 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.952439ms 2023-03-02T14:17:07.307Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #159 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.363066ms 2023-03-02T14:17:07.307Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #160 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.528019ms 2023-03-02T14:17:07.307Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #161 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.595542ms 2023-03-02T14:17:07.307Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #162 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.598886ms 2023-03-02T14:17:07.307Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #163 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.659663ms 2023-03-02T14:17:07.308Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #164 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.119191ms 2023-03-02T14:17:07.308Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #165 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.234896ms 2023-03-02T14:17:07.308Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #166 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.449031ms 2023-03-02T14:17:07.308Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #167 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.531442ms 2023-03-02T14:17:07.311Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #168 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.595472ms 2023-03-02T14:17:07.312Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #169 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.966921ms 2023-03-02T14:17:07.312Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #170 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.944735ms 2023-03-02T14:17:07.312Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #171 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.000249ms 2023-03-02T14:17:07.312Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #172 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.883447ms 2023-03-02T14:17:07.312Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #173 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.938339ms 2023-03-02T14:17:07.312Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #174 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.997602ms 2023-03-02T14:17:07.312Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #175 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.182089ms 2023-03-02T14:17:07.312Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #176 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.253858ms 2023-03-02T14:17:07.314Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #177 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.835241ms 2023-03-02T14:17:07.315Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #178 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.998179ms 2023-03-02T14:17:07.316Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #179 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.110971ms 2023-03-02T14:17:07.316Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #180 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.176555ms 2023-03-02T14:17:07.316Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #181 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.23461ms 2023-03-02T14:17:07.316Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #182 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.291432ms 2023-03-02T14:17:07.316Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #183 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.350209ms 2023-03-02T14:17:07.318Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #184 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.269001ms 2023-03-02T14:17:07.318Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #185 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.359021ms 2023-03-02T14:17:07.318Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #186 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.40671ms 2023-03-02T14:17:07.318Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #187 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.451116ms 2023-03-02T14:17:07.318Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #188 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.497778ms 2023-03-02T14:17:07.318Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #189 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.542991ms 2023-03-02T14:17:07.318Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #190 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.587773ms 2023-03-02T14:17:07.322Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #191 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.814425ms 2023-03-02T14:17:07.322Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #192 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.986766ms 2023-03-02T14:17:07.322Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #193 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.047372ms 2023-03-02T14:17:07.322Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #194 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.092184ms 2023-03-02T14:17:07.322Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #195 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.13481ms 2023-03-02T14:17:07.322Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #196 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.180765ms 2023-03-02T14:17:07.322Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #197 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.237227ms 2023-03-02T14:17:07.322Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #198 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.289693ms 2023-03-02T14:17:07.322Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #199 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.333176ms 2023-03-02T14:17:07.322Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #200 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.175166ms 2023-03-02T14:17:07.323Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #201 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.348179ms 2023-03-02T14:17:07.323Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #202 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.425522ms 2023-03-02T14:17:07.325Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #203 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.665703ms 2023-03-02T14:17:07.325Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #204 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.827191ms 2023-03-02T14:17:07.326Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #205 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.952981ms 2023-03-02T14:17:07.326Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #206 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.003893ms 2023-03-02T14:17:07.326Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #207 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.050284ms 2023-03-02T14:17:07.326Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #208 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.093317ms 2023-03-02T14:17:07.327Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #209 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.463372ms 2023-03-02T14:17:07.328Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #210 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.578074ms 2023-03-02T14:17:07.328Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #211 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.626279ms 2023-03-02T14:17:07.328Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #212 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.537312ms 2023-03-02T14:17:07.328Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #213 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.581903ms 2023-03-02T14:17:07.328Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #214 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.627562ms 2023-03-02T14:17:07.329Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #215 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.180961ms 2023-03-02T14:17:07.330Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #216 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.304455ms 2023-03-02T14:17:07.330Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #217 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.404404ms 2023-03-02T14:17:07.330Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #218 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.456284ms 2023-03-02T14:17:07.330Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #219 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.579658ms 2023-03-02T14:17:07.332Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #220 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.312485ms 2023-03-02T14:17:07.332Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #221 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.427322ms 2023-03-02T14:17:07.332Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #222 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.472099ms 2023-03-02T14:17:07.332Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #223 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.515683ms 2023-03-02T14:17:07.332Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #224 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.561051ms 2023-03-02T14:17:07.332Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #225 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.607141ms 2023-03-02T14:17:07.332Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #226 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.731793ms 2023-03-02T14:17:07.332Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #227 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.618384ms 2023-03-02T14:17:07.333Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #228 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.742971ms 2023-03-02T14:17:07.333Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #229 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.829768ms 2023-03-02T14:17:07.333Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #230 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.942139ms 2023-03-02T14:17:07.333Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #231 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.163587ms 2023-03-02T14:17:07.333Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #232 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.248901ms 2023-03-02T14:17:07.335Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #233 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.322545ms 2023-03-02T14:17:07.335Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #234 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.586329ms 2023-03-02T14:17:07.335Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #235 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.795668ms 2023-03-02T14:17:07.337Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #236 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.589507ms 2023-03-02T14:17:07.338Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #237 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.972375ms 2023-03-02T14:17:07.338Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #238 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.135979ms 2023-03-02T14:17:07.339Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #239 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.191743ms 2023-03-02T14:17:07.339Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #240 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.280886ms 2023-03-02T14:17:07.340Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #241 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.05266ms 2023-03-02T14:17:07.340Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #0 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.124344ms 2023-03-02T14:17:07.340Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #1 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.166395ms 2023-03-02T14:17:07.340Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #2 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.226224ms 2023-03-02T14:17:07.340Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #3 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.272034ms 2023-03-02T14:17:07.340Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #4 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.308475ms 2023-03-02T14:17:07.340Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #5 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.343152ms 2023-03-02T14:17:07.340Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #6 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.179427ms 2023-03-02T14:17:07.340Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #7 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.211663ms 2023-03-02T14:17:07.340Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #8 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.250179ms 2023-03-02T14:17:07.341Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #9 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.758735ms 2023-03-02T14:17:07.341Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #10 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.940309ms 2023-03-02T14:17:07.341Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #11 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.100831ms 2023-03-02T14:17:07.341Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #12 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.294304ms 2023-03-02T14:17:07.342Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #13 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.593006ms 2023-03-02T14:17:07.342Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #14 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.776911ms 2023-03-02T14:17:07.342Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #15 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.947653ms 2023-03-02T14:17:07.343Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #16 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.766054ms 2023-03-02T14:17:07.343Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #17 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.00257ms 2023-03-02T14:17:07.343Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #18 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.226776ms 2023-03-02T14:17:07.344Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #19 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.400936ms 2023-03-02T14:17:07.344Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #20 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.563377ms 2023-03-02T14:17:07.344Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #43 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.723678ms 2023-03-02T14:17:07.344Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #44 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.737898ms 2023-03-02T14:17:07.344Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #45 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.897608ms 2023-03-02T14:17:07.346Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #46 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.156635ms 2023-03-02T14:17:07.346Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #47 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.356279ms 2023-03-02T14:17:07.346Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #48 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.520039ms 2023-03-02T14:17:07.346Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #242 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.174365ms 2023-03-02T14:17:07.347Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #243 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.954595ms 2023-03-02T14:17:07.347Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #244 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.129452ms 2023-03-02T14:17:07.347Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #245 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.328545ms 2023-03-02T14:17:07.349Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #246 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.117067ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #247 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.264154ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #248 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.309738ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #249 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.071217ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #250 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.103227ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #251 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.137818ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #252 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.175232ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #253 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.211061ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #254 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.248244ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #255 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.284405ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #21 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.323462ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #49 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.402961ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #22 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.172916ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #23 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.223773ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #24 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.259668ms 2023-03-02T14:17:07.350Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #25 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.298324ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #26 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.508334ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #27 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.578941ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #28 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.611352ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #29 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 54.643071ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #36 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.207151ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #37 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.235598ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #38 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.265081ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #39 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.296224ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #40 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.059477ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #41 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.092094ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #42 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.121903ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #50 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.689537ms 2023-03-02T14:17:07.351Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #51 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.730174ms 2023-03-02T14:17:07.352Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #52 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.760836ms 2023-03-02T14:17:07.352Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #53 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.793317ms 2023-03-02T14:17:07.352Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #54 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.650229ms 2023-03-02T14:17:07.352Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #55 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.681477ms 2023-03-02T14:17:07.352Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #30 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.711001ms 2023-03-02T14:17:07.352Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #31 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.742901ms 2023-03-02T14:17:07.352Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #32 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.789773ms 2023-03-02T14:17:07.352Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #33 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.822745ms 2023-03-02T14:17:07.354Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #34 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.293111ms 2023-03-02T14:17:07.355Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #35 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.57874ms 2023-03-02T14:17:07.355Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #56 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.756054ms 2023-03-02T14:17:07.355Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #57 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.914926ms 2023-03-02T14:17:07.355Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #58 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.078003ms 2023-03-02T14:17:07.355Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #59 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.234109ms 2023-03-02T14:17:07.355Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #60 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.074645ms 2023-03-02T14:17:07.356Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #61 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.241743ms 2023-03-02T14:17:07.356Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #62 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.403958ms 2023-03-02T14:17:07.356Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #63 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.560615ms 2023-03-02T14:17:07.356Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #64 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.721623ms 2023-03-02T14:17:07.356Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #65 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.747873ms 2023-03-02T14:17:07.357Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #66 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.972685ms 2023-03-02T14:17:07.357Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #67 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.141733ms 2023-03-02T14:17:07.357Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #68 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.2967ms 2023-03-02T14:17:07.357Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #69 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.359056ms 2023-03-02T14:17:07.359Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #70 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.103182ms 2023-03-02T14:17:07.359Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #71 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.326299ms 2023-03-02T14:17:07.359Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #72 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 55.658751ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #73 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.223227ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #74 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.253387ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #75 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.281307ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #76 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.307593ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #77 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.026786ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #78 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.055051ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #79 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.085462ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #80 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.112745ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #81 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.840796ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #82 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.866871ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #83 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.893708ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #84 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.922685ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #85 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.951813ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #86 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 52.979332ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #87 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.009858ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #88 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.035527ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #89 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.064299ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #90 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.091968ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #91 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.167372ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #92 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.196304ms 2023-03-02T14:17:07.360Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #93 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.225688ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #94 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.253723ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #95 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.280755ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #96 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.306685ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #97 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.334109ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #98 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.36257ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #99 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.388735ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #100 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.418856ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #101 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.372605ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #102 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.402149ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #103 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.107362ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #104 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.138866ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #105 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.170049ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #106 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.200084ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #107 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.23077ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #108 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.260891ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #109 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.297638ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #110 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.327437ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #111 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.358911ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #112 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.390705ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #113 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.419613ms 2023-03-02T14:17:07.361Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #114 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 53.452765ms 2023-03-02T14:17:07.364Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #115 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.072009ms 2023-03-02T14:17:07.365Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #116 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 56.858555ms 2023-03-02T14:17:07.365Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #117 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.030936ms 2023-03-02T14:17:07.365Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #118 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.186676ms 2023-03-02T14:17:07.365Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #119 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.338871ms 2023-03-02T14:17:07.365Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #120 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.520265ms 2023-03-02T14:17:07.366Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event: Pipeline #121 for future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 57.685849ms 2023-03-02T14:17:07.442Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #122 for future & fallible event' TIMED OUT after 151.005485ms 2023-03-02T14:17:07.442Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #122 for future & fallible event' ended after running for 607.620408ms -- stats: | ok: 2 events; avg 101.263963ms - 3.29153/sec | time out: 2 events; avg 151.436687ms - 3.29153/sec | failed: 2 events; avg 50.926507ms - 3.29153/sec 2023-03-02T14:17:07.442Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #123 for future & fallible event' TIMED OUT after 151.146623ms 2023-03-02T14:17:07.442Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #123 for future & fallible event' ended after running for 607.729816ms -- stats: | ok: 2 events; avg 101.226062ms - 3.29094/sec | time out: 2 events; avg 151.519924ms - 3.29094/sec | failed: 2 events; avg 51.011026ms - 3.29094/sec 2023-03-02T14:17:07.442Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #124 for future & fallible event' TIMED OUT after 151.223886ms 2023-03-02T14:17:07.442Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #124 for future & fallible event' ended after running for 607.80346ms -- stats: | ok: 2 events; avg 101.154819ms - 3.29054/sec | time out: 2 events; avg 151.557595ms - 3.29054/sec | failed: 2 events; avg 51.061094ms - 3.29054/sec 2023-03-02T14:17:07.445Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #125 for future & fallible event' TIMED OUT after 153.403214ms 2023-03-02T14:17:07.446Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #125 for future & fallible event' ended after running for 611.436658ms -- stats: | ok: 2 events; avg 101.113148ms - 3.27098/sec | time out: 2 events; avg 152.20803ms - 3.27098/sec | failed: 2 events; avg 51.10608ms - 3.27098/sec 2023-03-02T14:17:07.446Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #126 for future & fallible event' TIMED OUT after 153.897981ms 2023-03-02T14:17:07.446Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #126 for future & fallible event' ended after running for 611.622247ms -- stats: | ok: 2 events; avg 101.048894ms - 3.26999/sec | time out: 2 events; avg 152.303576ms - 3.26999/sec | failed: 2 events; avg 52.178591ms - 3.26999/sec 2023-03-02T14:17:07.446Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #127 for future & fallible event' TIMED OUT after 153.63938ms 2023-03-02T14:17:07.446Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #127 for future & fallible event' ended after running for 611.709922ms -- stats: | ok: 2 events; avg 100.819662ms - 3.26952/sec | time out: 2 events; avg 152.662307ms - 3.26952/sec | failed: 2 events; avg 52.010834ms - 3.26952/sec 2023-03-02T14:17:07.446Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #128 for future & fallible event' TIMED OUT after 153.685184ms 2023-03-02T14:17:07.446Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #128 for future & fallible event' ended after running for 611.795916ms -- stats: | ok: 2 events; avg 101.371109ms - 3.26906/sec | time out: 2 events; avg 152.623326ms - 3.26906/sec | failed: 2 events; avg 51.679887ms - 3.26906/sec 2023-03-02T14:17:07.446Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #129 for future & fallible event' TIMED OUT after 153.760432ms 2023-03-02T14:17:07.446Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #129 for future & fallible event' ended after running for 611.879901ms -- stats: | ok: 2 events; avg 101.334043ms - 3.26862/sec | time out: 2 events; avg 152.509764ms - 3.26862/sec | failed: 2 events; avg 51.848143ms - 3.26862/sec 2023-03-02T14:17:07.446Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #130 for future & fallible event' TIMED OUT after 153.771851ms 2023-03-02T14:17:07.446Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #130 for future & fallible event' ended after running for 611.968518ms -- stats: | ok: 2 events; avg 101.244576ms - 3.26814/sec | time out: 2 events; avg 152.333543ms - 3.26814/sec | failed: 2 events; avg 52.081227ms - 3.26814/sec 2023-03-02T14:17:07.446Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #131 for future & fallible event' TIMED OUT after 153.912828ms 2023-03-02T14:17:07.447Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #131 for future & fallible event' ended after running for 612.099861ms -- stats: | ok: 2 events; avg 101.18559ms - 3.26744/sec | time out: 2 events; avg 152.249604ms - 3.26744/sec | failed: 2 events; avg 52.361764ms - 3.26744/sec 2023-03-02T14:17:07.447Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #132 for future & fallible event' TIMED OUT after 154.001721ms 2023-03-02T14:17:07.447Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #132 for future & fallible event' ended after running for 612.182518ms -- stats: | ok: 2 events; avg 101.148009ms - 3.26700/sec | time out: 2 events; avg 152.148962ms - 3.26700/sec | failed: 2 events; avg 52.560918ms - 3.26700/sec 2023-03-02T14:17:07.447Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #133 for future & fallible event' TIMED OUT after 152.066046ms 2023-03-02T14:17:07.447Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #133 for future & fallible event' ended after running for 612.321516ms -- stats: | ok: 2 events; avg 100.90746ms - 3.26626/sec | time out: 2 events; avg 151.702181ms - 3.26626/sec | failed: 2 events; avg 53.206861ms - 3.26626/sec 2023-03-02T14:17:07.447Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #134 for future & fallible event' TIMED OUT after 150.725174ms 2023-03-02T14:17:07.447Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #134 for future & fallible event' ended after running for 612.407571ms -- stats: | ok: 2 events; avg 101.300344ms - 3.26580/sec | time out: 2 events; avg 151.330382ms - 3.26580/sec | failed: 2 events; avg 53.054195ms - 3.26580/sec 2023-03-02T14:17:07.447Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #135 for future & fallible event' TIMED OUT after 150.787054ms 2023-03-02T14:17:07.447Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #135 for future & fallible event' ended after running for 612.496523ms -- stats: | ok: 2 events; avg 101.170987ms - 3.26532/sec | time out: 2 events; avg 151.364833ms - 3.26532/sec | failed: 2 events; avg 53.39361ms - 3.26532/sec 2023-03-02T14:17:07.447Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #136 for future & fallible event' TIMED OUT after 150.862928ms 2023-03-02T14:17:07.447Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #136 for future & fallible event' ended after running for 612.581094ms -- stats: | ok: 2 events; avg 101.025581ms - 3.26487/sec | time out: 2 events; avg 151.384816ms - 3.26487/sec | failed: 2 events; avg 53.575985ms - 3.26487/sec 2023-03-02T14:17:07.449Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #137 for future & fallible event' TIMED OUT after 151.596187ms 2023-03-02T14:17:07.449Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #137 for future & fallible event' ended after running for 614.715224ms -- stats: | ok: 2 events; avg 101.421073ms - 3.25354/sec | time out: 2 events; avg 151.692867ms - 3.25354/sec | failed: 2 events; avg 53.19535ms - 3.25354/sec 2023-03-02T14:17:07.450Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #138 for future & fallible event' TIMED OUT after 152.245354ms 2023-03-02T14:17:07.450Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #138 for future & fallible event' ended after running for 615.385761ms -- stats: | ok: 2 events; avg 101.276815ms - 3.24999/sec | time out: 2 events; avg 151.914001ms - 3.24999/sec | failed: 2 events; avg 53.949289ms - 3.24999/sec 2023-03-02T14:17:07.451Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #139 for future & fallible event' TIMED OUT after 152.635891ms 2023-03-02T14:17:07.451Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #139 for future & fallible event' ended after running for 616.150142ms -- stats: | ok: 2 events; avg 101.56098ms - 3.24596/sec | time out: 2 events; avg 152.11463ms - 3.24596/sec | failed: 2 events; avg 53.794388ms - 3.24596/sec 2023-03-02T14:17:07.451Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #140 for future & fallible event' TIMED OUT after 153.240928ms 2023-03-02T14:17:07.452Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #140 for future & fallible event' ended after running for 616.794328ms -- stats: | ok: 2 events; avg 100.907803ms - 3.24257/sec | time out: 2 events; avg 152.343303ms - 3.24257/sec | failed: 2 events; avg 52.483272ms - 3.24257/sec 2023-03-02T14:17:07.452Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #141 for future & fallible event' TIMED OUT after 154.078332ms 2023-03-02T14:17:07.453Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #141 for future & fallible event' ended after running for 613.449867ms -- stats: | ok: 2 events; avg 100.76917ms - 3.26025/sec | time out: 2 events; avg 152.719155ms - 3.26025/sec | failed: 2 events; avg 52.682303ms - 3.26025/sec 2023-03-02T14:17:07.453Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #142 for future & fallible event' TIMED OUT after 155.189716ms 2023-03-02T14:17:07.453Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #142 for future & fallible event' ended after running for 614.200293ms -- stats: | ok: 2 events; avg 100.5551ms - 3.25627/sec | time out: 2 events; avg 153.184414ms - 3.25627/sec | failed: 2 events; avg 52.860048ms - 3.25627/sec 2023-03-02T14:17:07.454Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #143 for future & fallible event' TIMED OUT after 154.132317ms 2023-03-02T14:17:07.454Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #143 for future & fallible event' ended after running for 614.409466ms -- stats: | ok: 2 events; avg 100.953922ms - 3.25516/sec | time out: 2 events; avg 152.540386ms - 3.25516/sec | failed: 2 events; avg 53.252485ms - 3.25516/sec 2023-03-02T14:17:07.454Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #144 for future & fallible event' TIMED OUT after 154.223014ms 2023-03-02T14:17:07.454Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #144 for future & fallible event' ended after running for 614.509606ms -- stats: | ok: 2 events; avg 100.677952ms - 3.25463/sec | time out: 2 events; avg 152.575433ms - 3.25463/sec | failed: 2 events; avg 53.556889ms - 3.25463/sec 2023-03-02T14:17:07.454Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #145 for future & fallible event' TIMED OUT after 154.080793ms 2023-03-02T14:17:07.454Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #145 for future & fallible event' ended after running for 614.569009ms -- stats: | ok: 2 events; avg 101.008669ms - 3.25431/sec | time out: 2 events; avg 152.416766ms - 3.25431/sec | failed: 2 events; avg 53.336978ms - 3.25431/sec 2023-03-02T14:17:07.454Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #146 for future & fallible event' TIMED OUT after 154.157781ms 2023-03-02T14:17:07.454Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #146 for future & fallible event' ended after running for 614.660087ms -- stats: | ok: 2 events; avg 100.780979ms - 3.25383/sec | time out: 2 events; avg 152.549833ms - 3.25383/sec | failed: 2 events; avg 53.620197ms - 3.25383/sec 2023-03-02T14:17:07.454Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #147 for future & fallible event' TIMED OUT after 154.240257ms 2023-03-02T14:17:07.454Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #147 for future & fallible event' ended after running for 614.751054ms -- stats: | ok: 2 events; avg 100.610569ms - 3.25335/sec | time out: 2 events; avg 152.62875ms - 3.25335/sec | failed: 2 events; avg 53.811926ms - 3.25335/sec 2023-03-02T14:17:07.454Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #148 for future & fallible event' TIMED OUT after 154.274984ms 2023-03-02T14:17:07.454Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #148 for future & fallible event' ended after running for 614.901315ms -- stats: | ok: 2 events; avg 101.579256ms - 3.25255/sec | time out: 2 events; avg 152.692437ms - 3.25255/sec | failed: 2 events; avg 52.847125ms - 3.25255/sec 2023-03-02T14:17:07.455Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #149 for future & fallible event' TIMED OUT after 154.428939ms 2023-03-02T14:17:07.455Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #149 for future & fallible event' ended after running for 615.007165ms -- stats: | ok: 2 events; avg 101.289399ms - 3.25199/sec | time out: 2 events; avg 152.839065ms - 3.25199/sec | failed: 2 events; avg 52.992009ms - 3.25199/sec 2023-03-02T14:17:07.455Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #150 for future & fallible event' TIMED OUT after 151.558176ms 2023-03-02T14:17:07.455Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #150 for future & fallible event' ended after running for 615.144122ms -- stats: | ok: 2 events; avg 101.149499ms - 3.25127/sec | time out: 2 events; avg 151.38644ms - 3.25127/sec | failed: 2 events; avg 54.565988ms - 3.25127/sec 2023-03-02T14:17:07.455Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #151 for future & fallible event' TIMED OUT after 151.661149ms 2023-03-02T14:17:07.455Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #151 for future & fallible event' ended after running for 615.266488ms -- stats: | ok: 2 events; avg 100.996599ms - 3.25062/sec | time out: 2 events; avg 151.367113ms - 3.25062/sec | failed: 2 events; avg 54.836936ms - 3.25062/sec 2023-03-02T14:17:07.458Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #152 for future & fallible event' TIMED OUT after 155.071119ms 2023-03-02T14:17:07.459Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #152 for future & fallible event' ended after running for 619.022839ms -- stats: | ok: 2 events; avg 100.822769ms - 3.23090/sec | time out: 2 events; avg 153.006017ms - 3.23090/sec | failed: 2 events; avg 55.117711ms - 3.23090/sec 2023-03-02T14:17:07.459Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #153 for future & fallible event' TIMED OUT after 155.760869ms 2023-03-02T14:17:07.459Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #153 for future & fallible event' ended after running for 619.625054ms -- stats: | ok: 2 events; avg 100.705981ms - 3.22776/sec | time out: 2 events; avg 153.282121ms - 3.22776/sec | failed: 2 events; avg 55.382561ms - 3.22776/sec 2023-03-02T14:17:07.460Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #154 for future & fallible event' TIMED OUT after 156.510327ms 2023-03-02T14:17:07.461Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #154 for future & fallible event' ended after running for 620.936128ms -- stats: | ok: 2 events; avg 101.005971ms - 3.22094/sec | time out: 2 events; avg 153.689831ms - 3.22094/sec | failed: 2 events; avg 55.073649ms - 3.22094/sec 2023-03-02T14:17:07.461Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #155 for future & fallible event' TIMED OUT after 157.758287ms 2023-03-02T14:17:07.461Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #155 for future & fallible event' ended after running for 621.655105ms -- stats: | ok: 2 events; avg 100.885741ms - 3.21722/sec | time out: 2 events; avg 154.315934ms - 3.21722/sec | failed: 2 events; avg 55.283461ms - 3.21722/sec 2023-03-02T14:17:07.462Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #156 for future & fallible event' TIMED OUT after 158.051691ms 2023-03-02T14:17:07.462Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #156 for future & fallible event' ended after running for 621.83317ms -- stats: | ok: 2 events; avg 100.771949ms - 3.21630/sec | time out: 2 events; avg 154.443741ms - 3.21630/sec | failed: 2 events; avg 55.432416ms - 3.21630/sec 2023-03-02T14:17:07.462Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #157 for future & fallible event' TIMED OUT after 157.879215ms 2023-03-02T14:17:07.462Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #157 for future & fallible event' ended after running for 621.909546ms -- stats: | ok: 2 events; avg 101.000711ms - 3.21590/sec | time out: 2 events; avg 154.920951ms - 3.21590/sec | failed: 2 events; avg 54.597214ms - 3.21590/sec 2023-03-02T14:17:07.462Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #158 for future & fallible event' TIMED OUT after 157.94121ms 2023-03-02T14:17:07.462Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #158 for future & fallible event' ended after running for 621.974674ms -- stats: | ok: 2 events; avg 100.866996ms - 3.21557/sec | time out: 2 events; avg 154.898554ms - 3.21557/sec | failed: 2 events; avg 54.864917ms - 3.21557/sec 2023-03-02T14:17:07.462Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #159 for future & fallible event' TIMED OUT after 155.337099ms 2023-03-02T14:17:07.462Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #159 for future & fallible event' ended after running for 622.054459ms -- stats: | ok: 2 events; avg 101.143427ms - 3.21515/sec | time out: 2 events; avg 153.565869ms - 3.21515/sec | failed: 2 events; avg 55.772118ms - 3.21515/sec 2023-03-02T14:17:07.462Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #160 for future & fallible event' TIMED OUT after 155.375876ms 2023-03-02T14:17:07.462Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #160 for future & fallible event' ended after running for 622.129641ms -- stats: | ok: 2 events; avg 101.005256ms - 3.21476/sec | time out: 2 events; avg 153.511465ms - 3.21476/sec | failed: 2 events; avg 56.090802ms - 3.21476/sec 2023-03-02T14:17:07.462Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #161 for future & fallible event' TIMED OUT after 155.426843ms 2023-03-02T14:17:07.462Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #161 for future & fallible event' ended after running for 622.204168ms -- stats: | ok: 2 events; avg 100.779802ms - 3.21438/sec | time out: 2 events; avg 153.394386ms - 3.21438/sec | failed: 2 events; avg 56.417234ms - 3.21438/sec 2023-03-02T14:17:07.462Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #162 for future & fallible event' TIMED OUT after 155.434578ms 2023-03-02T14:17:07.462Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #162 for future & fallible event' ended after running for 622.325772ms -- stats: | ok: 2 events; avg 101.116069ms - 3.21375/sec | time out: 2 events; avg 153.390393ms - 3.21375/sec | failed: 2 events; avg 56.192487ms - 3.21375/sec 2023-03-02T14:17:07.463Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #163 for future & fallible event' TIMED OUT after 155.55565ms 2023-03-02T14:17:07.463Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #163 for future & fallible event' ended after running for 622.429401ms -- stats: | ok: 2 events; avg 100.849077ms - 3.21322/sec | time out: 2 events; avg 153.445318ms - 3.21322/sec | failed: 2 events; avg 56.43101ms - 3.21322/sec 2023-03-02T14:17:07.463Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #164 for future & fallible event' TIMED OUT after 155.019455ms 2023-03-02T14:17:07.463Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #164 for future & fallible event' ended after running for 622.50497ms -- stats: | ok: 2 events; avg 101.180315ms - 3.21283/sec | time out: 2 events; avg 153.113529ms - 3.21283/sec | failed: 2 events; avg 56.412611ms - 3.21283/sec 2023-03-02T14:17:07.463Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #165 for future & fallible event' TIMED OUT after 155.07354ms 2023-03-02T14:17:07.463Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #165 for future & fallible event' ended after running for 622.580198ms -- stats: | ok: 2 events; avg 100.818641ms - 3.21244/sec | time out: 2 events; avg 153.259903ms - 3.21244/sec | failed: 2 events; avg 56.734055ms - 3.21244/sec 2023-03-02T14:17:07.463Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #166 for future & fallible event' TIMED OUT after 154.839786ms 2023-03-02T14:17:07.463Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #166 for future & fallible event' ended after running for 622.655256ms -- stats: | ok: 2 events; avg 101.149589ms - 3.21205/sec | time out: 2 events; avg 153.203517ms - 3.21205/sec | failed: 2 events; avg 56.556292ms - 3.21205/sec 2023-03-02T14:17:07.463Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #167 for future & fallible event' TIMED OUT after 154.88745ms 2023-03-02T14:17:07.463Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #167 for future & fallible event' ended after running for 622.730844ms -- stats: | ok: 2 events; avg 100.915268ms - 3.21166/sec | time out: 2 events; avg 153.27251ms - 3.21166/sec | failed: 2 events; avg 56.766007ms - 3.21166/sec 2023-03-02T14:17:07.463Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #168 for future & fallible event' TIMED OUT after 151.563796ms 2023-03-02T14:17:07.463Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #168 for future & fallible event' ended after running for 622.82733ms -- stats: | ok: 2 events; avg 100.63076ms - 3.21116/sec | time out: 2 events; avg 151.74672ms - 3.21116/sec | failed: 2 events; avg 58.446683ms - 3.21116/sec 2023-03-02T14:17:07.463Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #169 for future & fallible event' TIMED OUT after 151.586141ms 2023-03-02T14:17:07.463Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #169 for future & fallible event' ended after running for 622.876173ms -- stats: | ok: 2 events; avg 100.444093ms - 3.21091/sec | time out: 2 events; avg 151.805937ms - 3.21091/sec | failed: 2 events; avg 58.807641ms - 3.21091/sec 2023-03-02T14:17:07.463Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #170 for future & fallible event' TIMED OUT after 151.684818ms 2023-03-02T14:17:07.463Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #170 for future & fallible event' ended after running for 623.005541ms -- stats: | ok: 2 events; avg 100.780129ms - 3.21024/sec | time out: 2 events; avg 151.870012ms - 3.21024/sec | failed: 2 events; avg 58.453143ms - 3.21024/sec 2023-03-02T14:17:07.464Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #171 for future & fallible event' TIMED OUT after 151.752377ms 2023-03-02T14:17:07.464Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #171 for future & fallible event' ended after running for 623.085396ms -- stats: | ok: 2 events; avg 100.411117ms - 3.20983/sec | time out: 2 events; avg 152.09356ms - 3.20983/sec | failed: 2 events; avg 58.633924ms - 3.20983/sec 2023-03-02T14:17:07.464Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #172 for future & fallible event' TIMED OUT after 151.808492ms 2023-03-02T14:17:07.464Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #172 for future & fallible event' ended after running for 623.161696ms -- stats: | ok: 2 events; avg 101.35901ms - 3.20944/sec | time out: 2 events; avg 152.116403ms - 3.20944/sec | failed: 2 events; avg 57.6929ms - 3.20944/sec 2023-03-02T14:17:07.464Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #173 for future & fallible event' TIMED OUT after 151.863159ms 2023-03-02T14:17:07.464Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #173 for future & fallible event' ended after running for 623.239095ms -- stats: | ok: 2 events; avg 101.222105ms - 3.20904/sec | time out: 2 events; avg 151.975781ms - 3.20904/sec | failed: 2 events; avg 57.945557ms - 3.20904/sec 2023-03-02T14:17:07.464Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #174 for future & fallible event' TIMED OUT after 151.916668ms 2023-03-02T14:17:07.464Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #174 for future & fallible event' ended after running for 623.316338ms -- stats: | ok: 2 events; avg 100.767985ms - 3.20864/sec | time out: 2 events; avg 151.645079ms - 3.20864/sec | failed: 2 events; avg 56.206089ms - 3.20864/sec 2023-03-02T14:17:07.464Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #175 for future & fallible event' TIMED OUT after 151.72957ms 2023-03-02T14:17:07.464Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #175 for future & fallible event' ended after running for 618.375075ms -- stats: | ok: 2 events; avg 101.129562ms - 3.23428/sec | time out: 2 events; avg 151.393592ms - 3.23428/sec | failed: 2 events; avg 56.161702ms - 3.23428/sec 2023-03-02T14:17:07.464Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #176 for future & fallible event' TIMED OUT after 151.782026ms 2023-03-02T14:17:07.464Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #176 for future & fallible event' ended after running for 618.42305ms -- stats: | ok: 2 events; avg 100.937039ms - 3.23403/sec | time out: 2 events; avg 151.282161ms - 3.23403/sec | failed: 2 events; avg 56.491785ms - 3.23403/sec 2023-03-02T14:17:07.468Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #177 for future & fallible event' TIMED OUT after 153.774432ms 2023-03-02T14:17:07.468Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #177 for future & fallible event' ended after running for 622.380614ms -- stats: | ok: 2 events; avg 100.768253ms - 3.21347/sec | time out: 2 events; avg 153.26494ms - 3.21347/sec | failed: 2 events; avg 56.608573ms - 3.21347/sec 2023-03-02T14:17:07.468Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #178 for future & fallible event' TIMED OUT after 152.695876ms 2023-03-02T14:17:07.468Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #178 for future & fallible event' ended after running for 622.527436ms -- stats: | ok: 2 events; avg 101.349607ms - 3.21271/sec | time out: 2 events; avg 152.533442ms - 3.21271/sec | failed: 2 events; avg 56.986094ms - 3.21271/sec 2023-03-02T14:17:07.469Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #179 for future & fallible event' TIMED OUT after 152.853224ms 2023-03-02T14:17:07.469Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #179 for future & fallible event' ended after running for 622.71922ms -- stats: | ok: 2 events; avg 101.291932ms - 3.21172/sec | time out: 2 events; avg 152.316138ms - 3.21172/sec | failed: 2 events; avg 57.332113ms - 3.21172/sec 2023-03-02T14:17:07.469Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #180 for future & fallible event' TIMED OUT after 152.924858ms 2023-03-02T14:17:07.469Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #180 for future & fallible event' ended after running for 622.805551ms -- stats: | ok: 2 events; avg 101.235844ms - 3.21128/sec | time out: 2 events; avg 152.158827ms - 3.21128/sec | failed: 2 events; avg 57.685349ms - 3.21128/sec 2023-03-02T14:17:07.469Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #181 for future & fallible event' TIMED OUT after 152.993345ms 2023-03-02T14:17:07.469Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #181 for future & fallible event' ended after running for 622.897727ms -- stats: | ok: 2 events; avg 101.071738ms - 3.21080/sec | time out: 2 events; avg 152.134925ms - 3.21080/sec | failed: 2 events; avg 57.943568ms - 3.21080/sec 2023-03-02T14:17:07.469Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #182 for future & fallible event' TIMED OUT after 153.063284ms 2023-03-02T14:17:07.469Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #182 for future & fallible event' ended after running for 622.995903ms -- stats: | ok: 2 events; avg 101.010546ms - 3.21029/sec | time out: 2 events; avg 152.055979ms - 3.21029/sec | failed: 2 events; avg 58.173388ms - 3.21029/sec 2023-03-02T14:17:07.469Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #183 for future & fallible event' TIMED OUT after 153.13736ms 2023-03-02T14:17:07.469Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #183 for future & fallible event' ended after running for 623.040063ms -- stats: | ok: 2 events; avg 100.943938ms - 3.21007/sec | time out: 2 events; avg 151.982188ms - 3.21007/sec | failed: 2 events; avg 58.359168ms - 3.21007/sec 2023-03-02T14:17:07.469Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #184 for future & fallible event' TIMED OUT after 151.239801ms 2023-03-02T14:17:07.469Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #184 for future & fallible event' ended after running for 623.185421ms -- stats: | ok: 2 events; avg 100.637183ms - 3.20932/sec | time out: 2 events; avg 151.6359ms - 3.20932/sec | failed: 2 events; avg 58.972172ms - 3.20932/sec 2023-03-02T14:17:07.469Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #185 for future & fallible event' TIMED OUT after 151.394723ms 2023-03-02T14:17:07.470Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #185 for future & fallible event' ended after running for 623.371586ms -- stats: | ok: 2 events; avg 100.59575ms - 3.20836/sec | time out: 2 events; avg 151.639611ms - 3.20836/sec | failed: 2 events; avg 59.232265ms - 3.20836/sec 2023-03-02T14:17:07.470Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #186 for future & fallible event' TIMED OUT after 151.501324ms 2023-03-02T14:17:07.470Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #186 for future & fallible event' ended after running for 623.480504ms -- stats: | ok: 2 events; avg 100.561731ms - 3.20780/sec | time out: 2 events; avg 151.59151ms - 3.20780/sec | failed: 2 events; avg 59.385173ms - 3.20780/sec 2023-03-02T14:17:07.470Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #187 for future & fallible event' TIMED OUT after 151.610618ms 2023-03-02T14:17:07.470Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #187 for future & fallible event' ended after running for 623.628278ms -- stats: | ok: 2 events; avg 100.526854ms - 3.20704/sec | time out: 2 events; avg 151.494682ms - 3.20704/sec | failed: 2 events; avg 59.535906ms - 3.20704/sec 2023-03-02T14:17:07.470Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #188 for future & fallible event' TIMED OUT after 151.733755ms 2023-03-02T14:17:07.470Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #188 for future & fallible event' ended after running for 623.748825ms -- stats: | ok: 2 events; avg 100.492284ms - 3.20642/sec | time out: 2 events; avg 151.427329ms - 3.20642/sec | failed: 2 events; avg 59.733652ms - 3.20642/sec 2023-03-02T14:17:07.470Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #189 for future & fallible event' TIMED OUT after 151.916979ms 2023-03-02T14:17:07.470Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #189 for future & fallible event' ended after running for 624.146394ms -- stats: | ok: 2 events; avg 100.459076ms - 3.20438/sec | time out: 2 events; avg 151.41201ms - 3.20438/sec | failed: 2 events; avg 59.902404ms - 3.20438/sec 2023-03-02T14:17:07.473Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #190 for future & fallible event' TIMED OUT after 152.336081ms 2023-03-02T14:17:07.473Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #190 for future & fallible event' ended after running for 626.84493ms -- stats: | ok: 2 events; avg 100.424185ms - 3.19058/sec | time out: 2 events; avg 151.469916ms - 3.19058/sec | failed: 2 events; avg 60.048647ms - 3.19058/sec 2023-03-02T14:17:07.473Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #191 for future & fallible event' TIMED OUT after 151.427294ms 2023-03-02T14:17:07.474Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #191 for future & fallible event' ended after running for 627.016093ms -- stats: | ok: 2 events; avg 100.644059ms - 3.18971/sec | time out: 2 events; avg 151.612878ms - 3.18971/sec | failed: 2 events; avg 60.83861ms - 3.18971/sec 2023-03-02T14:17:07.474Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #192 for future & fallible event' TIMED OUT after 151.640332ms 2023-03-02T14:17:07.474Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #192 for future & fallible event' ended after running for 627.154068ms -- stats: | ok: 2 events; avg 100.579187ms - 3.18901/sec | time out: 2 events; avg 151.555628ms - 3.18901/sec | failed: 2 events; avg 61.121471ms - 3.18901/sec 2023-03-02T14:17:07.474Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #193 for future & fallible event' TIMED OUT after 151.704703ms 2023-03-02T14:17:07.474Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #193 for future & fallible event' ended after running for 627.23075ms -- stats: | ok: 2 events; avg 101.094887ms - 3.18862/sec | time out: 2 events; avg 151.271611ms - 3.18862/sec | failed: 2 events; avg 60.869843ms - 3.18862/sec 2023-03-02T14:17:07.474Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #194 for future & fallible event' TIMED OUT after 151.773104ms 2023-03-02T14:17:07.474Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #194 for future & fallible event' ended after running for 627.314649ms -- stats: | ok: 2 events; avg 101.054408ms - 3.18819/sec | time out: 2 events; avg 151.95328ms - 3.18819/sec | failed: 2 events; avg 60.205474ms - 3.18819/sec 2023-03-02T14:17:07.474Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #195 for future & fallible event' TIMED OUT after 151.837194ms 2023-03-02T14:17:07.474Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #195 for future & fallible event' ended after running for 627.401527ms -- stats: | ok: 2 events; avg 100.994743ms - 3.18775/sec | time out: 2 events; avg 151.892722ms - 3.18775/sec | failed: 2 events; avg 60.4816ms - 3.18775/sec 2023-03-02T14:17:07.474Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #196 for future & fallible event' TIMED OUT after 151.89948ms 2023-03-02T14:17:07.474Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #196 for future & fallible event' ended after running for 627.482961ms -- stats: | ok: 2 events; avg 100.937352ms - 3.18734/sec | time out: 2 events; avg 151.733816ms - 3.18734/sec | failed: 2 events; avg 60.748726ms - 3.18734/sec 2023-03-02T14:17:07.474Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #197 for future & fallible event' TIMED OUT after 151.957244ms 2023-03-02T14:17:07.474Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #197 for future & fallible event' ended after running for 627.562429ms -- stats: | ok: 2 events; avg 100.900687ms - 3.18693/sec | time out: 2 events; avg 151.510745ms - 3.18693/sec | failed: 2 events; avg 61.010774ms - 3.18693/sec 2023-03-02T14:17:07.474Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #198 for future & fallible event' TIMED OUT after 152.036773ms 2023-03-02T14:17:07.474Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #198 for future & fallible event' ended after running for 627.661988ms -- stats: | ok: 2 events; avg 100.813091ms - 3.18643/sec | time out: 2 events; avg 151.524574ms - 3.18643/sec | failed: 2 events; avg 61.333708ms - 3.18643/sec 2023-03-02T14:17:07.474Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #199 for future & fallible event' TIMED OUT after 152.156202ms 2023-03-02T14:17:07.475Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #199 for future & fallible event' ended after running for 627.79513ms -- stats: | ok: 2 events; avg 100.754783ms - 3.18575/sec | time out: 2 events; avg 151.610523ms - 3.18575/sec | failed: 2 events; avg 61.41435ms - 3.18575/sec 2023-03-02T14:17:07.475Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #200 for future & fallible event' TIMED OUT after 152.170422ms 2023-03-02T14:17:07.475Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #200 for future & fallible event' ended after running for 627.880313ms -- stats: | ok: 2 events; avg 100.881174ms - 3.18532/sec | time out: 2 events; avg 151.44822ms - 3.18532/sec | failed: 2 events; avg 61.1188ms - 3.18532/sec 2023-03-02T14:17:07.475Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #201 for future & fallible event' TIMED OUT after 152.058477ms 2023-03-02T14:17:07.475Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #201 for future & fallible event' ended after running for 627.993993ms -- stats: | ok: 2 events; avg 101.359218ms - 3.18474/sec | time out: 2 events; avg 151.632041ms - 3.18474/sec | failed: 2 events; avg 60.84758ms - 3.18474/sec 2023-03-02T14:17:07.475Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #202 for future & fallible event' TIMED OUT after 152.119811ms 2023-03-02T14:17:07.475Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #202 for future & fallible event' ended after running for 628.079868ms -- stats: | ok: 2 events; avg 101.279281ms - 3.18431/sec | time out: 2 events; avg 151.297629ms - 3.18431/sec | failed: 2 events; avg 60.925633ms - 3.18431/sec 2023-03-02T14:17:07.476Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #203 for future & fallible event' TIMED OUT after 150.833354ms 2023-03-02T14:17:07.476Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #203 for future & fallible event' ended after running for 629.493195ms -- stats: | ok: 2 events; avg 100.746967ms - 3.17716/sec | time out: 2 events; avg 151.238978ms - 3.17716/sec | failed: 2 events; avg 62.014498ms - 3.17716/sec 2023-03-02T14:17:07.478Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #204 for future & fallible event' TIMED OUT after 152.111375ms 2023-03-02T14:17:07.478Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #204 for future & fallible event' ended after running for 630.959547ms -- stats: | ok: 2 events; avg 100.548461ms - 3.16978/sec | time out: 2 events; avg 152.092338ms - 3.16978/sec | failed: 2 events; avg 62.32167ms - 3.16978/sec 2023-03-02T14:17:07.478Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #205 for future & fallible event' TIMED OUT after 152.142402ms 2023-03-02T14:17:07.478Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #205 for future & fallible event' ended after running for 631.099617ms -- stats: | ok: 2 events; avg 101.01597ms - 3.16907/sec | time out: 2 events; avg 152.247071ms - 3.16907/sec | failed: 2 events; avg 62.062498ms - 3.16907/sec 2023-03-02T14:17:07.478Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #206 for future & fallible event' TIMED OUT after 152.236668ms 2023-03-02T14:17:07.478Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #206 for future & fallible event' ended after running for 631.203116ms -- stats: | ok: 2 events; avg 100.89682ms - 3.16855/sec | time out: 2 events; avg 152.398944ms - 3.16855/sec | failed: 2 events; avg 62.127054ms - 3.16855/sec 2023-03-02T14:17:07.478Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #207 for future & fallible event' TIMED OUT after 152.322327ms 2023-03-02T14:17:07.478Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #207 for future & fallible event' ended after running for 631.307222ms -- stats: | ok: 2 events; avg 100.784272ms - 3.16803/sec | time out: 2 events; avg 152.523071ms - 3.16803/sec | failed: 2 events; avg 62.172461ms - 3.16803/sec 2023-03-02T14:17:07.478Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #208 for future & fallible event' TIMED OUT after 152.492242ms 2023-03-02T14:17:07.479Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #208 for future & fallible event' ended after running for 631.497217ms -- stats: | ok: 2 events; avg 100.952156ms - 3.16708/sec | time out: 2 events; avg 152.684793ms - 3.16708/sec | failed: 2 events; avg 59.416823ms - 3.16708/sec 2023-03-02T14:17:07.479Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #209 for future & fallible event' TIMED OUT after 151.121159ms 2023-03-02T14:17:07.479Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #209 for future & fallible event' ended after running for 626.605291ms -- stats: | ok: 2 events; avg 101.31973ms - 3.19180/sec | time out: 2 events; avg 152.084827ms - 3.19180/sec | failed: 2 events; avg 59.622012ms - 3.19180/sec 2023-03-02T14:17:07.479Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #210 for future & fallible event' TIMED OUT after 151.209425ms 2023-03-02T14:17:07.479Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #210 for future & fallible event' ended after running for 626.682996ms -- stats: | ok: 2 events; avg 101.124205ms - 3.19141/sec | time out: 2 events; avg 152.262792ms - 3.19141/sec | failed: 2 events; avg 59.701219ms - 3.19141/sec 2023-03-02T14:17:07.479Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #211 for future & fallible event' TIMED OUT after 151.292532ms 2023-03-02T14:17:07.479Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #211 for future & fallible event' ended after running for 626.805567ms -- stats: | ok: 2 events; avg 100.877069ms - 3.19078/sec | time out: 2 events; avg 152.514338ms - 3.19078/sec | failed: 2 events; avg 59.747197ms - 3.19078/sec 2023-03-02T14:17:07.479Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #212 for future & fallible event' TIMED OUT after 151.388081ms 2023-03-02T14:17:07.479Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #212 for future & fallible event' ended after running for 626.965016ms -- stats: | ok: 2 events; avg 101.330243ms - 3.18997/sec | time out: 2 events; avg 152.167886ms - 3.18997/sec | failed: 2 events; avg 59.64632ms - 3.18997/sec 2023-03-02T14:17:07.479Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #213 for future & fallible event' TIMED OUT after 151.473149ms 2023-03-02T14:17:07.479Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #213 for future & fallible event' ended after running for 627.053521ms -- stats: | ok: 2 events; avg 101.166412ms - 3.18952/sec | time out: 2 events; avg 152.207628ms - 3.18952/sec | failed: 2 events; avg 59.827365ms - 3.18952/sec 2023-03-02T14:17:07.479Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #214 for future & fallible event' TIMED OUT after 151.620357ms 2023-03-02T14:17:07.480Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #214 for future & fallible event' ended after running for 627.235998ms -- stats: | ok: 2 events; avg 101.002544ms - 3.18859/sec | time out: 2 events; avg 152.313352ms - 3.18859/sec | failed: 2 events; avg 59.980012ms - 3.18859/sec 2023-03-02T14:17:07.482Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #215 for future & fallible event' TIMED OUT after 152.656352ms 2023-03-02T14:17:07.482Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #215 for future & fallible event' ended after running for 630.019116ms -- stats: | ok: 2 events; avg 101.36915ms - 3.17451/sec | time out: 2 events; avg 152.947143ms - 3.17451/sec | failed: 2 events; avg 60.377035ms - 3.17451/sec 2023-03-02T14:17:07.482Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #216 for future & fallible event' TIMED OUT after 152.84356ms 2023-03-02T14:17:07.483Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #216 for future & fallible event' ended after running for 630.138208ms -- stats: | ok: 2 events; avg 101.24895ms - 3.17391/sec | time out: 2 events; avg 153.166682ms - 3.17391/sec | failed: 2 events; avg 60.474195ms - 3.17391/sec 2023-03-02T14:17:07.483Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #217 for future & fallible event' TIMED OUT after 152.857099ms 2023-03-02T14:17:07.483Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #217 for future & fallible event' ended after running for 630.219477ms -- stats: | ok: 2 events; avg 101.137593ms - 3.17350/sec | time out: 2 events; avg 153.256416ms - 3.17350/sec | failed: 2 events; avg 60.546108ms - 3.17350/sec 2023-03-02T14:17:07.483Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #218 for future & fallible event' TIMED OUT after 152.881014ms 2023-03-02T14:17:07.483Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #218 for future & fallible event' ended after running for 630.300574ms -- stats: | ok: 2 events; avg 101.030424ms - 3.17309/sec | time out: 2 events; avg 153.341264ms - 3.17309/sec | failed: 2 events; avg 60.593992ms - 3.17309/sec 2023-03-02T14:17:07.483Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #219 for future & fallible event' TIMED OUT after 152.92144ms 2023-03-02T14:17:07.483Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #219 for future & fallible event' ended after running for 630.404173ms -- stats: | ok: 2 events; avg 101.459518ms - 3.17257/sec | time out: 2 events; avg 153.433025ms - 3.17257/sec | failed: 2 events; avg 60.12186ms - 3.17257/sec 2023-03-02T14:17:07.483Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #220 for future & fallible event' TIMED OUT after 151.01342ms 2023-03-02T14:17:07.483Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #220 for future & fallible event' ended after running for 630.517186ms -- stats: | ok: 2 events; avg 101.971664ms - 3.17200/sec | time out: 2 events; avg 152.569622ms - 3.17200/sec | failed: 2 events; avg 60.509883ms - 3.17200/sec 2023-03-02T14:17:07.483Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #221 for future & fallible event' TIMED OUT after 151.075675ms 2023-03-02T14:17:07.483Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #221 for future & fallible event' ended after running for 630.59895ms -- stats: | ok: 2 events; avg 101.866886ms - 3.17159/sec | time out: 2 events; avg 152.169794ms - 3.17159/sec | failed: 2 events; avg 60.588058ms - 3.17159/sec 2023-03-02T14:17:07.483Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #222 for future & fallible event' TIMED OUT after 151.142963ms 2023-03-02T14:17:07.483Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #222 for future & fallible event' ended after running for 630.678223ms -- stats: | ok: 2 events; avg 101.616725ms - 3.17119/sec | time out: 2 events; avg 152.156144ms - 3.17119/sec | failed: 2 events; avg 61.154682ms - 3.17119/sec 2023-03-02T14:17:07.483Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #223 for future & fallible event' TIMED OUT after 151.250598ms 2023-03-02T14:17:07.483Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #223 for future & fallible event' ended after running for 630.806499ms -- stats: | ok: 2 events; avg 101.472586ms - 3.17054/sec | time out: 2 events; avg 152.265847ms - 3.17054/sec | failed: 2 events; avg 61.429512ms - 3.17054/sec 2023-03-02T14:17:07.484Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #224 for future & fallible event' TIMED OUT after 151.320392ms 2023-03-02T14:17:07.484Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #224 for future & fallible event' ended after running for 630.889722ms -- stats: | ok: 2 events; avg 101.34618ms - 3.17013/sec | time out: 2 events; avg 152.206063ms - 3.17013/sec | failed: 2 events; avg 61.512016ms - 3.17013/sec 2023-03-02T14:17:07.484Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #225 for future & fallible event' TIMED OUT after 151.310091ms 2023-03-02T14:17:07.484Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #225 for future & fallible event' ended after running for 630.971838ms -- stats: | ok: 2 events; avg 101.207316ms - 3.16971/sec | time out: 2 events; avg 152.268708ms - 3.16971/sec | failed: 2 events; avg 61.765037ms - 3.16971/sec 2023-03-02T14:17:07.484Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #226 for future & fallible event' TIMED OUT after 151.335344ms 2023-03-02T14:17:07.484Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #226 for future & fallible event' ended after running for 631.05083ms -- stats: | ok: 2 events; avg 101.065189ms - 3.16932/sec | time out: 2 events; avg 152.376711ms - 3.16932/sec | failed: 2 events; avg 61.862111ms - 3.16932/sec 2023-03-02T14:17:07.484Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #227 for future & fallible event' TIMED OUT after 151.386171ms 2023-03-02T14:17:07.484Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #227 for future & fallible event' ended after running for 631.166008ms -- stats: | ok: 2 events; avg 101.491764ms - 3.16874/sec | time out: 2 events; avg 152.507931ms - 3.16874/sec | failed: 2 events; avg 61.328154ms - 3.16874/sec 2023-03-02T14:17:07.484Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #228 for future & fallible event' TIMED OUT after 151.379069ms 2023-03-02T14:17:07.484Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #228 for future & fallible event' ended after running for 631.248996ms -- stats: | ok: 2 events; avg 101.328701ms - 3.16832/sec | time out: 2 events; avg 152.273789ms - 3.16832/sec | failed: 2 events; avg 61.414905ms - 3.16832/sec 2023-03-02T14:17:07.484Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #229 for future & fallible event' TIMED OUT after 151.382116ms 2023-03-02T14:17:07.484Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #229 for future & fallible event' ended after running for 631.330684ms -- stats: | ok: 2 events; avg 101.190537ms - 3.16791/sec | time out: 2 events; avg 152.203053ms - 3.16791/sec | failed: 2 events; avg 61.8608ms - 3.16791/sec 2023-03-02T14:17:07.484Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #230 for future & fallible event' TIMED OUT after 151.375304ms 2023-03-02T14:17:07.484Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #230 for future & fallible event' ended after running for 631.412234ms -- stats: | ok: 2 events; avg 101.021431ms - 3.16750/sec | time out: 2 events; avg 152.283221ms - 3.16750/sec | failed: 2 events; avg 62.134832ms - 3.16750/sec 2023-03-02T14:17:07.484Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #231 for future & fallible event' TIMED OUT after 151.22551ms 2023-03-02T14:17:07.484Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #231 for future & fallible event' ended after running for 631.547236ms -- stats: | ok: 2 events; avg 101.417571ms - 3.16683/sec | time out: 2 events; avg 152.339637ms - 3.16683/sec | failed: 2 events; avg 61.777644ms - 3.16683/sec 2023-03-02T14:17:07.485Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #232 for future & fallible event' TIMED OUT after 151.245234ms 2023-03-02T14:17:07.485Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #232 for future & fallible event' ended after running for 631.614474ms -- stats: | ok: 2 events; avg 101.214826ms - 3.16649/sec | time out: 2 events; avg 152.469322ms - 3.16649/sec | failed: 2 events; avg 61.845399ms - 3.16649/sec 2023-03-02T14:17:07.487Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #233 for future & fallible event' TIMED OUT after 152.040828ms 2023-03-02T14:17:07.487Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #233 for future & fallible event' ended after running for 633.865939ms -- stats: | ok: 2 events; avg 101.621643ms - 3.15524/sec | time out: 2 events; avg 153.032094ms - 3.15524/sec | failed: 2 events; avg 61.907075ms - 3.15524/sec 2023-03-02T14:17:07.487Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #234 for future & fallible event' TIMED OUT after 151.969069ms 2023-03-02T14:17:07.487Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #234 for future & fallible event' ended after running for 633.939974ms -- stats: | ok: 2 events; avg 101.459689ms - 3.15487/sec | time out: 2 events; avg 153.149888ms - 3.15487/sec | failed: 2 events; avg 62.065542ms - 3.15487/sec 2023-03-02T14:17:07.488Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #235 for future & fallible event' TIMED OUT after 151.400958ms 2023-03-02T14:17:07.488Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #235 for future & fallible event' ended after running for 635.146009ms -- stats: | ok: 2 events; avg 101.326808ms - 3.14888/sec | time out: 2 events; avg 152.991429ms - 3.14888/sec | failed: 2 events; avg 62.194731ms - 3.14888/sec 2023-03-02T14:17:07.488Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #236 for future & fallible event' TIMED OUT after 151.237866ms 2023-03-02T14:17:07.488Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #236 for future & fallible event' ended after running for 635.21231ms -- stats: | ok: 2 events; avg 101.134576ms - 3.14855/sec | time out: 2 events; avg 153.001487ms - 3.14855/sec | failed: 2 events; avg 63.115373ms - 3.14855/sec 2023-03-02T14:17:07.491Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #237 for future & fallible event' TIMED OUT after 152.705375ms 2023-03-02T14:17:07.491Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #237 for future & fallible event' ended after running for 638.081713ms -- stats: | ok: 2 events; avg 101.416096ms - 3.13439/sec | time out: 2 events; avg 153.215408ms - 3.13439/sec | failed: 2 events; avg 63.331418ms - 3.13439/sec 2023-03-02T14:17:07.491Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #238 for future & fallible event' TIMED OUT after 152.792738ms 2023-03-02T14:17:07.492Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #238 for future & fallible event' ended after running for 638.15638ms -- stats: | ok: 2 events; avg 101.278707ms - 3.13403/sec | time out: 2 events; avg 153.187066ms - 3.13403/sec | failed: 2 events; avg 64.198464ms - 3.13403/sec 2023-03-02T14:17:07.492Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #239 for future & fallible event' TIMED OUT after 152.84373ms 2023-03-02T14:17:07.492Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #239 for future & fallible event' ended after running for 638.564078ms -- stats: | ok: 2 events; avg 101.133361ms - 3.13203/sec | time out: 2 events; avg 153.254956ms - 3.13203/sec | failed: 2 events; avg 64.485356ms - 3.13203/sec 2023-03-02T14:17:07.492Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #240 for future & fallible event' TIMED OUT after 152.180277ms 2023-03-02T14:17:07.492Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #240 for future & fallible event' ended after running for 638.630119ms -- stats: | ok: 2 events; avg 101.634838ms - 3.13170/sec | time out: 2 events; avg 153.020054ms - 3.13170/sec | failed: 2 events; avg 64.099647ms - 3.13170/sec 2023-03-02T14:17:07.492Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #241 for future & fallible event' TIMED OUT after 152.182337ms 2023-03-02T14:17:07.492Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #241 for future & fallible event' ended after running for 638.690369ms -- stats: | ok: 2 events; avg 101.486057ms - 3.13141/sec | time out: 2 events; avg 152.888179ms - 3.13141/sec | failed: 2 events; avg 64.518154ms - 3.13141/sec 2023-03-02T14:17:07.492Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #0 for future & fallible event' TIMED OUT after 152.232247ms 2023-03-02T14:17:07.492Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #0 for future & fallible event' ended after running for 682.214127ms -- stats: | ok: 2 events; avg 101.285443ms - 2.93163/sec | time out: 2 events; avg 153.009042ms - 2.93163/sec | failed: 2 events; avg 61.997049ms - 2.93163/sec 2023-03-02T14:17:07.492Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #1 for future & fallible event' TIMED OUT after 152.270051ms 2023-03-02T14:17:07.492Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #1 for future & fallible event' ended after running for 682.213065ms -- stats: | ok: 2 events; avg 101.162858ms - 2.93164/sec | time out: 2 events; avg 152.653098ms - 2.93164/sec | failed: 2 events; avg 62.284566ms - 2.93164/sec 2023-03-02T14:17:07.492Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #2 for future & fallible event' TIMED OUT after 152.30769ms 2023-03-02T14:17:07.492Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #2 for future & fallible event' ended after running for 682.274448ms -- stats: | ok: 2 events; avg 101.022914ms - 2.93137/sec | time out: 2 events; avg 152.711615ms - 2.93137/sec | failed: 2 events; avg 62.58066ms - 2.93137/sec 2023-03-02T14:17:07.492Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #3 for future & fallible event' TIMED OUT after 152.361385ms 2023-03-02T14:17:07.492Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #3 for future & fallible event' ended after running for 682.340869ms -- stats: | ok: 2 events; avg 100.909799ms - 2.93109/sec | time out: 2 events; avg 152.838618ms - 2.93109/sec | failed: 2 events; avg 62.684298ms - 2.93109/sec 2023-03-02T14:17:07.492Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #4 for future & fallible event' TIMED OUT after 152.464287ms 2023-03-02T14:17:07.493Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #4 for future & fallible event' ended after running for 682.457997ms -- stats: | ok: 2 events; avg 100.820541ms - 2.93058/sec | time out: 2 events; avg 152.97547ms - 2.93058/sec | failed: 2 events; avg 62.734224ms - 2.93058/sec 2023-03-02T14:17:07.493Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #5 for future & fallible event' TIMED OUT after 152.543274ms 2023-03-02T14:17:07.493Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #5 for future & fallible event' ended after running for 677.072718ms -- stats: | ok: 2 events; avg 100.740597ms - 2.95389/sec | time out: 2 events; avg 153.075159ms - 2.95389/sec | failed: 2 events; avg 62.765665ms - 2.95389/sec 2023-03-02T14:17:07.493Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #6 for future & fallible event' TIMED OUT after 152.61175ms 2023-03-02T14:17:07.493Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #6 for future & fallible event' ended after running for 677.12174ms -- stats: | ok: 2 events; avg 101.255491ms - 2.95368/sec | time out: 2 events; avg 153.177112ms - 2.95368/sec | failed: 2 events; avg 62.208369ms - 2.95368/sec 2023-03-02T14:17:07.493Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #7 for future & fallible event' TIMED OUT after 152.675806ms 2023-03-02T14:17:07.493Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #7 for future & fallible event' ended after running for 677.199295ms -- stats: | ok: 2 events; avg 101.179153ms - 2.95334/sec | time out: 2 events; avg 153.270081ms - 2.95334/sec | failed: 2 events; avg 62.246822ms - 2.95334/sec 2023-03-02T14:17:07.493Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #8 for future & fallible event' TIMED OUT after 152.320588ms 2023-03-02T14:17:07.493Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #8 for future & fallible event' ended after running for 677.319285ms -- stats: | ok: 2 events; avg 101.104781ms - 2.95282/sec | time out: 2 events; avg 153.146535ms - 2.95282/sec | failed: 2 events; avg 62.288996ms - 2.95282/sec 2023-03-02T14:17:07.493Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #9 for future & fallible event' TIMED OUT after 152.238808ms 2023-03-02T14:17:07.493Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #9 for future & fallible event' ended after running for 677.396889ms -- stats: | ok: 2 events; avg 100.916415ms - 2.95248/sec | time out: 2 events; avg 152.730852ms - 2.95248/sec | failed: 2 events; avg 62.564529ms - 2.95248/sec 2023-03-02T14:17:07.493Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #10 for future & fallible event' TIMED OUT after 152.175791ms 2023-03-02T14:17:07.493Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #10 for future & fallible event' ended after running for 677.47737ms -- stats: | ok: 2 events; avg 100.821517ms - 2.95213/sec | time out: 2 events; avg 152.653992ms - 2.95213/sec | failed: 2 events; avg 63.200384ms - 2.95213/sec 2023-03-02T14:17:07.493Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #11 for future & fallible event' TIMED OUT after 151.987856ms 2023-03-02T14:17:07.493Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #11 for future & fallible event' ended after running for 677.563912ms -- stats: | ok: 2 events; avg 101.261154ms - 2.95175/sec | time out: 2 events; avg 152.617827ms - 2.95175/sec | failed: 2 events; avg 62.92364ms - 2.95175/sec 2023-03-02T14:17:07.495Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #12 for future & fallible event' TIMED OUT after 153.321425ms 2023-03-02T14:17:07.495Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #12 for future & fallible event' ended after running for 679.427215ms -- stats: | ok: 2 events; avg 101.175025ms - 2.94366/sec | time out: 2 events; avg 153.376907ms - 2.94366/sec | failed: 2 events; avg 63.056178ms - 2.94366/sec 2023-03-02T14:17:07.495Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #13 for future & fallible event' TIMED OUT after 153.510893ms 2023-03-02T14:17:07.495Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #13 for future & fallible event' ended after running for 679.526212ms -- stats: | ok: 2 events; avg 101.095662ms - 2.94323/sec | time out: 2 events; avg 153.534502ms - 2.94323/sec | failed: 2 events; avg 63.229263ms - 2.94323/sec 2023-03-02T14:17:07.495Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #14 for future & fallible event' TIMED OUT after 153.508142ms 2023-03-02T14:17:07.496Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #14 for future & fallible event' ended after running for 679.667576ms -- stats: | ok: 2 events; avg 101.018265ms - 2.94261/sec | time out: 2 events; avg 153.571814ms - 2.94261/sec | failed: 2 events; avg 63.342378ms - 2.94261/sec 2023-03-02T14:17:07.496Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #15 for future & fallible event' TIMED OUT after 152.657735ms 2023-03-02T14:17:07.496Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #15 for future & fallible event' ended after running for 679.798122ms -- stats: | ok: 2 events; avg 100.943133ms - 2.94205/sec | time out: 2 events; avg 153.201699ms - 2.94205/sec | failed: 2 events; avg 63.468657ms - 2.94205/sec 2023-03-02T14:17:07.496Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #16 for future & fallible event' TIMED OUT after 152.524703ms 2023-03-02T14:17:07.496Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #16 for future & fallible event' ended after running for 679.877962ms -- stats: | ok: 2 events; avg 101.445079ms - 2.94170/sec | time out: 2 events; avg 153.198659ms - 2.94170/sec | failed: 2 events; avg 63.399673ms - 2.94170/sec 2023-03-02T14:17:07.496Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #17 for future & fallible event' TIMED OUT after 152.409821ms 2023-03-02T14:17:07.496Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #17 for future & fallible event' ended after running for 679.960483ms -- stats: | ok: 2 events; avg 101.366803ms - 2.94135/sec | time out: 2 events; avg 153.205305ms - 2.94135/sec | failed: 2 events; avg 63.540161ms - 2.94135/sec 2023-03-02T14:17:07.496Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #18 for future & fallible event' TIMED OUT after 152.343415ms 2023-03-02T14:17:07.496Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #18 for future & fallible event' ended after running for 680.041796ms -- stats: | ok: 2 events; avg 101.290427ms - 2.94100/sec | time out: 2 events; avg 153.228402ms - 2.94100/sec | failed: 2 events; avg 63.673221ms - 2.94100/sec 2023-03-02T14:17:07.496Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #19 for future & fallible event' TIMED OUT after 152.29148ms 2023-03-02T14:17:07.496Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #19 for future & fallible event' ended after running for 680.121937ms -- stats: | ok: 2 events; avg 101.216294ms - 2.94065/sec | time out: 2 events; avg 153.25664ms - 2.94065/sec | failed: 2 events; avg 63.781098ms - 2.94065/sec 2023-03-02T14:17:07.496Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #20 for future & fallible event' TIMED OUT after 152.241209ms 2023-03-02T14:17:07.496Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #20 for future & fallible event' ended after running for 680.206112ms -- stats: | ok: 2 events; avg 101.14029ms - 2.94029/sec | time out: 2 events; avg 153.249949ms - 2.94029/sec | failed: 2 events; avg 63.918374ms - 2.94029/sec 2023-03-02T14:17:07.496Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #43 for future & fallible event' TIMED OUT after 152.187204ms 2023-03-02T14:17:07.496Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #43 for future & fallible event' ended after running for 678.445937ms -- stats: | ok: 2 events; avg 101.022542ms - 2.94791/sec | time out: 2 events; avg 153.276905ms - 2.94791/sec | failed: 2 events; avg 63.975185ms - 2.94791/sec 2023-03-02T14:17:07.496Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #44 for future & fallible event' TIMED OUT after 152.17775ms 2023-03-02T14:17:07.497Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #44 for future & fallible event' ended after running for 678.536001ms -- stats: | ok: 2 events; avg 101.496838ms - 2.94752/sec | time out: 2 events; avg 153.32745ms - 2.94752/sec | failed: 2 events; avg 63.505113ms - 2.94752/sec 2023-03-02T14:17:07.497Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #45 for future & fallible event' TIMED OUT after 151.054051ms 2023-03-02T14:17:07.497Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #45 for future & fallible event' ended after running for 678.637777ms -- stats: | ok: 2 events; avg 101.387158ms - 2.94708/sec | time out: 2 events; avg 152.84583ms - 2.94708/sec | failed: 2 events; avg 63.607462ms - 2.94708/sec 2023-03-02T14:17:07.497Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #46 for future & fallible event' TIMED OUT after 150.953645ms 2023-03-02T14:17:07.497Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #46 for future & fallible event' ended after running for 678.721822ms -- stats: | ok: 2 events; avg 101.27604ms - 2.94672/sec | time out: 2 events; avg 152.885526ms - 2.94672/sec | failed: 2 events; avg 64.257719ms - 2.94672/sec 2023-03-02T14:17:07.497Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #47 for future & fallible event' TIMED OUT after 150.897415ms 2023-03-02T14:17:07.497Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #47 for future & fallible event' ended after running for 678.805425ms -- stats: | ok: 2 events; avg 101.185247ms - 2.94635/sec | time out: 2 events; avg 152.945787ms - 2.94635/sec | failed: 2 events; avg 64.356998ms - 2.94635/sec 2023-03-02T14:17:07.497Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #48 for future & fallible event' TIMED OUT after 150.861445ms 2023-03-02T14:17:07.497Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #48 for future & fallible event' ended after running for 678.901445ms -- stats: | ok: 2 events; avg 101.046495ms - 2.94594/sec | time out: 2 events; avg 153.017849ms - 2.94594/sec | failed: 2 events; avg 64.461596ms - 2.94594/sec 2023-03-02T14:17:07.500Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #242 for future & fallible event' TIMED OUT after 153.260182ms 2023-03-02T14:17:07.500Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #242 for future & fallible event' ended after running for 647.153979ms -- stats: | ok: 2 events; avg 102.016658ms - 3.09045/sec | time out: 2 events; avg 154.334038ms - 3.09045/sec | failed: 2 events; avg 63.97666ms - 3.09045/sec 2023-03-02T14:17:07.501Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #243 for future & fallible event' TIMED OUT after 153.290828ms 2023-03-02T14:17:07.501Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #243 for future & fallible event' ended after running for 641.987418ms -- stats: | ok: 2 events; avg 101.872668ms - 3.11533/sec | time out: 2 events; avg 154.462516ms - 3.11533/sec | failed: 2 events; avg 64.387783ms - 3.11533/sec 2023-03-02T14:17:07.501Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #244 for future & fallible event' TIMED OUT after 153.199991ms 2023-03-02T14:17:07.501Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #244 for future & fallible event' ended after running for 641.987523ms -- stats: | ok: 2 events; avg 101.732463ms - 3.11533/sec | time out: 2 events; avg 154.506266ms - 3.11533/sec | failed: 2 events; avg 64.496353ms - 3.11533/sec 2023-03-02T14:17:07.501Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #245 for future & fallible event' TIMED OUT after 151.702557ms 2023-03-02T14:17:07.501Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #245 for future & fallible event' ended after running for 642.063532ms -- stats: | ok: 2 events; avg 101.568528ms - 3.11496/sec | time out: 2 events; avg 153.83774ms - 3.11496/sec | failed: 2 events; avg 64.625055ms - 3.11496/sec 2023-03-02T14:17:07.501Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #246 for future & fallible event' TIMED OUT after 151.388547ms 2023-03-02T14:17:07.501Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #246 for future & fallible event' ended after running for 642.141392ms -- stats: | ok: 2 events; avg 101.487838ms - 3.11458/sec | time out: 2 events; avg 153.808057ms - 3.11458/sec | failed: 2 events; avg 65.540016ms - 3.11458/sec 2023-03-02T14:17:07.501Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #247 for future & fallible event' TIMED OUT after 151.460968ms 2023-03-02T14:17:07.501Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #247 for future & fallible event' ended after running for 642.246636ms -- stats: | ok: 2 events; avg 101.36617ms - 3.11407/sec | time out: 2 events; avg 153.936833ms - 3.11407/sec | failed: 2 events; avg 65.635458ms - 3.11407/sec 2023-03-02T14:17:07.501Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #248 for future & fallible event' TIMED OUT after 151.552101ms 2023-03-02T14:17:07.501Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #248 for future & fallible event' ended after running for 642.350349ms -- stats: | ok: 2 events; avg 101.202533ms - 3.11357/sec | time out: 2 events; avg 154.052377ms - 3.11357/sec | failed: 2 events; avg 65.695241ms - 3.11357/sec 2023-03-02T14:17:07.501Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #249 for future & fallible event' TIMED OUT after 151.625084ms 2023-03-02T14:17:07.501Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #249 for future & fallible event' ended after running for 642.432004ms -- stats: | ok: 2 events; avg 102.156326ms - 3.11317/sec | time out: 2 events; avg 154.216647ms - 3.11317/sec | failed: 2 events; avg 64.605162ms - 3.11317/sec 2023-03-02T14:17:07.501Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #250 for future & fallible event' TIMED OUT after 151.746603ms 2023-03-02T14:17:07.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #250 for future & fallible event' ended after running for 642.565332ms -- stats: | ok: 2 events; avg 102.022976ms - 3.11252/sec | time out: 2 events; avg 154.424876ms - 3.11252/sec | failed: 2 events; avg 64.640395ms - 3.11252/sec 2023-03-02T14:17:07.502Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #251 for future & fallible event' TIMED OUT after 151.822382ms 2023-03-02T14:17:07.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #251 for future & fallible event' ended after running for 642.65045ms -- stats: | ok: 2 events; avg 101.878129ms - 3.11211/sec | time out: 2 events; avg 154.575169ms - 3.11211/sec | failed: 2 events; avg 64.675003ms - 3.11211/sec 2023-03-02T14:17:07.502Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #252 for future & fallible event' TIMED OUT after 151.894227ms 2023-03-02T14:17:07.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #252 for future & fallible event' ended after running for 642.732555ms -- stats: | ok: 2 events; avg 101.761967ms - 3.11171/sec | time out: 2 events; avg 154.720828ms - 3.11171/sec | failed: 2 events; avg 64.711012ms - 3.11171/sec 2023-03-02T14:17:07.502Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #253 for future & fallible event' TIMED OUT after 151.966237ms 2023-03-02T14:17:07.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #253 for future & fallible event' ended after running for 642.814996ms -- stats: | ok: 2 events; avg 101.612985ms - 3.11132/sec | time out: 2 events; avg 154.856473ms - 3.11132/sec | failed: 2 events; avg 64.746939ms - 3.11132/sec 2023-03-02T14:17:07.502Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #254 for future & fallible event' TIMED OUT after 152.034723ms 2023-03-02T14:17:07.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #254 for future & fallible event' ended after running for 642.890992ms -- stats: | ok: 2 events; avg 101.488836ms - 3.11095/sec | time out: 2 events; avg 154.996812ms - 3.11095/sec | failed: 2 events; avg 64.782821ms - 3.11095/sec 2023-03-02T14:17:07.502Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #255 for future & fallible event' TIMED OUT after 152.110557ms 2023-03-02T14:17:07.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #255 for future & fallible event' ended after running for 642.978496ms -- stats: | ok: 2 events; avg 101.372585ms - 3.11052/sec | time out: 2 events; avg 155.12684ms - 3.11052/sec | failed: 2 events; avg 64.818054ms - 3.11052/sec 2023-03-02T14:17:07.502Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #21 for future & fallible event' TIMED OUT after 152.179224ms 2023-03-02T14:17:07.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #21 for future & fallible event' ended after running for 686.096033ms -- stats: | ok: 2 events; avg 101.257831ms - 2.91504/sec | time out: 2 events; avg 155.246466ms - 2.91504/sec | failed: 2 events; avg 64.795598ms - 2.91504/sec 2023-03-02T14:17:07.502Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #49 for future & fallible event' TIMED OUT after 152.103089ms 2023-03-02T14:17:07.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #49 for future & fallible event' ended after running for 684.15531ms -- stats: | ok: 2 events; avg 100.672141ms - 2.92331/sec | time out: 2 events; avg 153.323859ms - 2.92331/sec | failed: 2 events; avg 67.142725ms - 2.92331/sec 2023-03-02T14:17:07.502Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #22 for future & fallible event' TIMED OUT after 152.139675ms 2023-03-02T14:17:07.502Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #22 for future & fallible event' ended after running for 686.310964ms -- stats: | ok: 2 events; avg 101.819009ms - 2.91413/sec | time out: 2 events; avg 155.319586ms - 2.91413/sec | failed: 2 events; avg 64.238809ms - 2.91413/sec 2023-03-02T14:17:07.503Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #23 for future & fallible event' TIMED OUT after 152.237886ms 2023-03-02T14:17:07.504Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #23 for future & fallible event' ended after running for 688.012178ms -- stats: | ok: 2 events; avg 101.682708ms - 2.90693/sec | time out: 2 events; avg 155.489713ms - 2.90693/sec | failed: 2 events; avg 64.281993ms - 2.90693/sec 2023-03-02T14:17:07.504Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #24 for future & fallible event' TIMED OUT after 153.992422ms 2023-03-02T14:17:07.504Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #24 for future & fallible event' ended after running for 688.19709ms -- stats: | ok: 2 events; avg 101.579845ms - 2.90614/sec | time out: 2 events; avg 156.487793ms - 2.90614/sec | failed: 2 events; avg 64.317077ms - 2.90614/sec 2023-03-02T14:17:07.505Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #25 for future & fallible event' TIMED OUT after 153.740778ms 2023-03-02T14:17:07.505Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #25 for future & fallible event' ended after running for 688.335958ms -- stats: | ok: 2 events; avg 101.478025ms - 2.90556/sec | time out: 2 events; avg 156.445861ms - 2.90556/sec | failed: 2 events; avg 64.353891ms - 2.90556/sec 2023-03-02T14:17:07.505Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #26 for future & fallible event' TIMED OUT after 153.767555ms 2023-03-02T14:17:07.505Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #26 for future & fallible event' ended after running for 688.414795ms -- stats: | ok: 2 events; avg 101.459503ms - 2.90523/sec | time out: 2 events; avg 156.54856ms - 2.90523/sec | failed: 2 events; avg 64.476669ms - 2.90523/sec 2023-03-02T14:17:07.505Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #27 for future & fallible event' TIMED OUT after 153.834748ms 2023-03-02T14:17:07.505Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #27 for future & fallible event' ended after running for 688.490709ms -- stats: | ok: 2 events; avg 101.351231ms - 2.90490/sec | time out: 2 events; avg 156.706333ms - 2.90490/sec | failed: 2 events; avg 64.52933ms - 2.90490/sec 2023-03-02T14:17:07.505Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #28 for future & fallible event' TIMED OUT after 153.906392ms 2023-03-02T14:17:07.505Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #28 for future & fallible event' ended after running for 688.570899ms -- stats: | ok: 2 events; avg 101.23793ms - 2.90457/sec | time out: 2 events; avg 156.833559ms - 2.90457/sec | failed: 2 events; avg 64.566307ms - 2.90457/sec 2023-03-02T14:17:07.505Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #29 for future & fallible event' TIMED OUT after 153.97549ms 2023-03-02T14:17:07.505Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #29 for future & fallible event' ended after running for 688.619652ms -- stats: | ok: 2 events; avg 101.124316ms - 2.90436/sec | time out: 2 events; avg 156.964302ms - 2.90436/sec | failed: 2 events; avg 64.600423ms - 2.90436/sec 2023-03-02T14:17:07.505Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #36 for future & fallible event' TIMED OUT after 154.046653ms 2023-03-02T14:17:07.505Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #36 for future & fallible event' ended after running for 688.497335ms -- stats: | ok: 2 events; avg 101.644278ms - 2.90488/sec | time out: 2 events; avg 154.151842ms - 2.90488/sec | failed: 2 events; avg 66.813499ms - 2.90488/sec 2023-03-02T14:17:07.505Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #37 for future & fallible event' TIMED OUT after 154.118513ms 2023-03-02T14:17:07.505Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #37 for future & fallible event' ended after running for 688.576138ms -- stats: | ok: 2 events; avg 101.521768ms - 2.90454/sec | time out: 2 events; avg 154.231623ms - 2.90454/sec | failed: 2 events; avg 66.932105ms - 2.90454/sec 2023-03-02T14:17:07.505Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #38 for future & fallible event' TIMED OUT after 154.195821ms 2023-03-02T14:17:07.505Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #38 for future & fallible event' ended after running for 688.657987ms -- stats: | ok: 2 events; avg 101.402253ms - 2.90420/sec | time out: 2 events; avg 154.266447ms - 2.90420/sec | failed: 2 events; avg 67.062624ms - 2.90420/sec 2023-03-02T14:17:07.505Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #39 for future & fallible event' TIMED OUT after 154.327956ms 2023-03-02T14:17:07.506Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #39 for future & fallible event' ended after running for 687.713035ms -- stats: | ok: 2 events; avg 101.272464ms - 2.90819/sec | time out: 2 events; avg 154.348522ms - 2.90819/sec | failed: 2 events; avg 67.192264ms - 2.90819/sec 2023-03-02T14:17:07.506Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #40 for future & fallible event' TIMED OUT after 154.403891ms 2023-03-02T14:17:07.506Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #40 for future & fallible event' ended after running for 687.772589ms -- stats: | ok: 2 events; avg 101.271838ms - 2.90794/sec | time out: 2 events; avg 154.393956ms - 2.90794/sec | failed: 2 events; avg 67.179836ms - 2.90794/sec 2023-03-02T14:17:07.506Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #41 for future & fallible event' TIMED OUT after 154.477986ms 2023-03-02T14:17:07.506Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #41 for future & fallible event' ended after running for 687.853015ms -- stats: | ok: 2 events; avg 101.107568ms - 2.90760/sec | time out: 2 events; avg 154.465616ms - 2.90760/sec | failed: 2 events; avg 67.299575ms - 2.90760/sec 2023-03-02T14:17:07.506Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #42 for future & fallible event' TIMED OUT after 154.552046ms 2023-03-02T14:17:07.506Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #42 for future & fallible event' ended after running for 687.933772ms -- stats: | ok: 2 events; avg 101.000369ms - 2.90726/sec | time out: 2 events; avg 154.548183ms - 2.90726/sec | failed: 2 events; avg 67.415789ms - 2.90726/sec 2023-03-02T14:17:07.506Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #50 for future & fallible event' TIMED OUT after 154.448708ms 2023-03-02T14:17:07.506Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #50 for future & fallible event' ended after running for 687.810238ms -- stats: | ok: 2 events; avg 101.596951ms - 2.90778/sec | time out: 2 events; avg 154.586911ms - 2.90778/sec | failed: 2 events; avg 66.892236ms - 2.90778/sec 2023-03-02T14:17:07.506Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #51 for future & fallible event' TIMED OUT after 154.518327ms 2023-03-02T14:17:07.506Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #51 for future & fallible event' ended after running for 687.891817ms -- stats: | ok: 2 events; avg 101.492755ms - 2.90743/sec | time out: 2 events; avg 154.706389ms - 2.90743/sec | failed: 2 events; avg 66.942744ms - 2.90743/sec 2023-03-02T14:17:07.506Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #52 for future & fallible event' TIMED OUT after 154.593495ms 2023-03-02T14:17:07.506Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #52 for future & fallible event' ended after running for 687.972879ms -- stats: | ok: 2 events; avg 101.403065ms - 2.90709/sec | time out: 2 events; avg 154.833943ms - 2.90709/sec | failed: 2 events; avg 66.975944ms - 2.90709/sec 2023-03-02T14:17:07.506Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #53 for future & fallible event' TIMED OUT after 154.67357ms 2023-03-02T14:17:07.506Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #53 for future & fallible event' ended after running for 688.062593ms -- stats: | ok: 2 events; avg 101.29787ms - 2.90671/sec | time out: 2 events; avg 154.946655ms - 2.90671/sec | failed: 2 events; avg 67.010328ms - 2.90671/sec 2023-03-02T14:17:07.506Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #54 for future & fallible event' TIMED OUT after 154.7815ms 2023-03-02T14:17:07.506Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #54 for future & fallible event' ended after running for 688.187822ms -- stats: | ok: 2 events; avg 101.263389ms - 2.90618/sec | time out: 2 events; avg 155.088902ms - 2.90618/sec | failed: 2 events; avg 66.956788ms - 2.90618/sec 2023-03-02T14:17:07.507Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #55 for future & fallible event' TIMED OUT after 154.855415ms 2023-03-02T14:17:07.507Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #55 for future & fallible event' ended after running for 688.254479ms -- stats: | ok: 2 events; avg 101.156309ms - 2.90590/sec | time out: 2 events; avg 155.233145ms - 2.90590/sec | failed: 2 events; avg 66.989988ms - 2.90590/sec 2023-03-02T14:17:07.507Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #30 for future & fallible event' TIMED OUT after 154.909701ms 2023-03-02T14:17:07.507Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #30 for future & fallible event' ended after running for 690.233567ms -- stats: | ok: 2 events; avg 101.09812ms - 2.89757/sec | time out: 2 events; avg 157.326952ms - 2.89757/sec | failed: 2 events; avg 63.152596ms - 2.89757/sec 2023-03-02T14:17:07.507Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #31 for future & fallible event' TIMED OUT after 154.948222ms 2023-03-02T14:17:07.507Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #31 for future & fallible event' ended after running for 690.295601ms -- stats: | ok: 2 events; avg 101.022556ms - 2.89731/sec | time out: 2 events; avg 157.229483ms - 2.89731/sec | failed: 2 events; avg 65.161176ms - 2.89731/sec 2023-03-02T14:17:07.507Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #32 for future & fallible event' TIMED OUT after 155.001009ms 2023-03-02T14:17:07.507Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #32 for future & fallible event' ended after running for 690.356499ms -- stats: | ok: 2 events; avg 100.948229ms - 2.89705/sec | time out: 2 events; avg 157.129526ms - 2.89705/sec | failed: 2 events; avg 65.383904ms - 2.89705/sec 2023-03-02T14:17:07.507Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #33 for future & fallible event' TIMED OUT after 155.054217ms 2023-03-02T14:17:07.507Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #33 for future & fallible event' ended after running for 690.418178ms -- stats: | ok: 2 events; avg 100.858212ms - 2.89680/sec | time out: 2 events; avg 157.019332ms - 2.89680/sec | failed: 2 events; avg 65.604419ms - 2.89680/sec 2023-03-02T14:17:07.507Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #34 for future & fallible event' TIMED OUT after 152.541725ms 2023-03-02T14:17:07.507Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #34 for future & fallible event' ended after running for 690.523671ms -- stats: | ok: 2 events; avg 102.231205ms - 2.89635/sec | time out: 2 events; avg 155.660838ms - 2.89635/sec | failed: 2 events; avg 65.551281ms - 2.89635/sec 2023-03-02T14:17:07.507Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #35 for future & fallible event' TIMED OUT after 152.444252ms 2023-03-02T14:17:07.507Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #35 for future & fallible event' ended after running for 690.583271ms -- stats: | ok: 2 events; avg 102.164045ms - 2.89610/sec | time out: 2 events; avg 155.575663ms - 2.89610/sec | failed: 2 events; avg 65.885454ms - 2.89610/sec 2023-03-02T14:17:07.507Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #56 for future & fallible event' TIMED OUT after 152.368146ms 2023-03-02T14:17:07.509Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #56 for future & fallible event' ended after running for 690.819978ms -- stats: | ok: 2 events; avg 102.070503ms - 2.89511/sec | time out: 2 events; avg 154.575765ms - 2.89511/sec | failed: 2 events; avg 67.044288ms - 2.89511/sec 2023-03-02T14:17:07.509Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #57 for future & fallible event' TIMED OUT after 154.256422ms 2023-03-02T14:17:07.509Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #57 for future & fallible event' ended after running for 690.914243ms -- stats: | ok: 2 events; avg 101.994008ms - 2.89472/sec | time out: 2 events; avg 155.575246ms - 2.89472/sec | failed: 2 events; avg 67.141213ms - 2.89472/sec 2023-03-02T14:17:07.509Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #58 for future & fallible event' TIMED OUT after 154.237395ms 2023-03-02T14:17:07.509Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #58 for future & fallible event' ended after running for 691.025576ms -- stats: | ok: 2 events; avg 101.919264ms - 2.89425/sec | time out: 2 events; avg 155.627012ms - 2.89425/sec | failed: 2 events; avg 67.240871ms - 2.89425/sec 2023-03-02T14:17:07.510Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #59 for future & fallible event' TIMED OUT after 154.171906ms 2023-03-02T14:17:07.510Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #59 for future & fallible event' ended after running for 691.091065ms -- stats: | ok: 2 events; avg 101.832122ms - 2.89397/sec | time out: 2 events; avg 155.653447ms - 2.89397/sec | failed: 2 events; avg 67.336552ms - 2.89397/sec 2023-03-02T14:17:07.510Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #60 for future & fallible event' TIMED OUT after 154.069971ms 2023-03-02T14:17:07.510Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #60 for future & fallible event' ended after running for 691.158544ms -- stats: | ok: 2 events; avg 101.917461ms - 2.89369/sec | time out: 2 events; avg 155.674517ms - 2.89369/sec | failed: 2 events; avg 67.273602ms - 2.89369/sec 2023-03-02T14:17:07.510Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #61 for future & fallible event' TIMED OUT after 154.01345ms 2023-03-02T14:17:07.510Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #61 for future & fallible event' ended after running for 689.196714ms -- stats: | ok: 2 events; avg 101.838671ms - 2.90193/sec | time out: 2 events; avg 155.710787ms - 2.90193/sec | failed: 2 events; avg 67.375079ms - 2.90193/sec 2023-03-02T14:17:07.510Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #62 for future & fallible event' TIMED OUT after 153.946187ms 2023-03-02T14:17:07.510Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #62 for future & fallible event' ended after running for 689.23273ms -- stats: | ok: 2 events; avg 101.725318ms - 2.90178/sec | time out: 2 events; avg 155.739427ms - 2.90178/sec | failed: 2 events; avg 67.473747ms - 2.90178/sec 2023-03-02T14:17:07.510Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #63 for future & fallible event' TIMED OUT after 153.874352ms 2023-03-02T14:17:07.510Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #63 for future & fallible event' ended after running for 689.29698ms -- stats: | ok: 2 events; avg 101.638168ms - 2.90151/sec | time out: 2 events; avg 155.395702ms - 2.90151/sec | failed: 2 events; avg 67.569695ms - 2.90151/sec 2023-03-02T14:17:07.510Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #64 for future & fallible event' TIMED OUT after 153.809244ms 2023-03-02T14:17:07.510Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #64 for future & fallible event' ended after running for 689.364829ms -- stats: | ok: 2 events; avg 101.560488ms - 2.90122/sec | time out: 2 events; avg 155.415922ms - 2.90122/sec | failed: 2 events; avg 68.081714ms - 2.90122/sec 2023-03-02T14:17:07.510Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #65 for future & fallible event' TIMED OUT after 153.60563ms 2023-03-02T14:17:07.510Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #65 for future & fallible event' ended after running for 689.470373ms -- stats: | ok: 2 events; avg 101.585589ms - 2.90078/sec | time out: 2 events; avg 155.373335ms - 2.90078/sec | failed: 2 events; avg 68.120629ms - 2.90078/sec 2023-03-02T14:17:07.510Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #66 for future & fallible event' TIMED OUT after 153.526959ms 2023-03-02T14:17:07.510Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #66 for future & fallible event' ended after running for 689.540995ms -- stats: | ok: 2 events; avg 101.507023ms - 2.90048/sec | time out: 2 events; avg 155.370235ms - 2.90048/sec | failed: 2 events; avg 68.280317ms - 2.90048/sec 2023-03-02T14:17:07.510Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #67 for future & fallible event' TIMED OUT after 153.460412ms 2023-03-02T14:17:07.510Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #67 for future & fallible event' ended after running for 689.643461ms -- stats: | ok: 2 events; avg 101.35524ms - 2.90005/sec | time out: 2 events; avg 155.347019ms - 2.90005/sec | failed: 2 events; avg 68.456747ms - 2.90005/sec 2023-03-02T14:17:07.510Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #68 for future & fallible event' TIMED OUT after 153.436297ms 2023-03-02T14:17:07.511Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #68 for future & fallible event' ended after running for 689.723421ms -- stats: | ok: 2 events; avg 101.233348ms - 2.89971/sec | time out: 2 events; avg 155.403405ms - 2.89971/sec | failed: 2 events; avg 68.600222ms - 2.89971/sec 2023-03-02T14:17:07.511Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #69 for future & fallible event' TIMED OUT after 151.793826ms 2023-03-02T14:17:07.511Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #69 for future & fallible event' ended after running for 689.790158ms -- stats: | ok: 2 events; avg 101.143762ms - 2.89943/sec | time out: 2 events; avg 154.686302ms - 2.89943/sec | failed: 2 events; avg 68.658426ms - 2.89943/sec 2023-03-02T14:17:07.511Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #70 for future & fallible event' TIMED OUT after 151.649349ms 2023-03-02T14:17:07.511Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #70 for future & fallible event' ended after running for 689.859196ms -- stats: | ok: 2 events; avg 101.050943ms - 2.89914/sec | time out: 2 events; avg 154.732466ms - 2.89914/sec | failed: 2 events; avg 69.550604ms - 2.89914/sec 2023-03-02T14:17:07.511Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #71 for future & fallible event' TIMED OUT after 151.436793ms 2023-03-02T14:17:07.511Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #71 for future & fallible event' ended after running for 689.92691ms -- stats: | ok: 2 events; avg 100.927666ms - 2.89886/sec | time out: 2 events; avg 154.699534ms - 2.89886/sec | failed: 2 events; avg 69.682501ms - 2.89886/sec 2023-03-02T14:17:07.511Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #72 for future & fallible event' TIMED OUT after 151.42176ms 2023-03-02T14:17:07.511Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #72 for future & fallible event' ended after running for 689.995582ms -- stats: | ok: 2 events; avg 100.776419ms - 2.89857/sec | time out: 2 events; avg 154.799759ms - 2.89857/sec | failed: 2 events; avg 69.86884ms - 2.89857/sec 2023-03-02T14:17:07.511Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #73 for future & fallible event' TIMED OUT after 151.305951ms 2023-03-02T14:17:07.512Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #73 for future & fallible event' ended after running for 686.026684ms -- stats: | ok: 2 events; avg 101.981878ms - 2.91534/sec | time out: 2 events; avg 154.874355ms - 2.91534/sec | failed: 2 events; avg 68.671495ms - 2.91534/sec 2023-03-02T14:17:07.513Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #74 for future & fallible event' TIMED OUT after 152.78943ms 2023-03-02T14:17:07.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #74 for future & fallible event' ended after running for 687.501932ms -- stats: | ok: 2 events; avg 101.875924ms - 2.90908/sec | time out: 2 events; avg 155.732885ms - 2.90908/sec | failed: 2 events; avg 68.706468ms - 2.90908/sec 2023-03-02T14:17:07.513Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #75 for future & fallible event' TIMED OUT after 152.860943ms 2023-03-02T14:17:07.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #75 for future & fallible event' ended after running for 687.573958ms -- stats: | ok: 2 events; avg 101.769879ms - 2.90878/sec | time out: 2 events; avg 155.864432ms - 2.90878/sec | failed: 2 events; avg 68.741351ms - 2.90878/sec 2023-03-02T14:17:07.513Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #76 for future & fallible event' TIMED OUT after 152.922688ms 2023-03-02T14:17:07.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #76 for future & fallible event' ended after running for 687.646468ms -- stats: | ok: 2 events; avg 101.6412ms - 2.90847/sec | time out: 2 events; avg 155.98385ms - 2.90847/sec | failed: 2 events; avg 68.774283ms - 2.90847/sec 2023-03-02T14:17:07.513Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #77 for future & fallible event' TIMED OUT after 152.981375ms 2023-03-02T14:17:07.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #77 for future & fallible event' ended after running for 687.715782ms -- stats: | ok: 2 events; avg 101.641357ms - 2.90818/sec | time out: 2 events; avg 156.126454ms - 2.90818/sec | failed: 2 events; avg 68.653136ms - 2.90818/sec 2023-03-02T14:17:07.513Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #78 for future & fallible event' TIMED OUT after 153.039565ms 2023-03-02T14:17:07.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #78 for future & fallible event' ended after running for 687.787587ms -- stats: | ok: 2 events; avg 101.520896ms - 2.90787/sec | time out: 2 events; avg 156.260774ms - 2.90787/sec | failed: 2 events; avg 68.686441ms - 2.90787/sec 2023-03-02T14:17:07.513Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #79 for future & fallible event' TIMED OUT after 153.100066ms 2023-03-02T14:17:07.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #79 for future & fallible event' ended after running for 687.858995ms -- stats: | ok: 2 events; avg 101.429172ms - 2.90757/sec | time out: 2 events; avg 156.38423ms - 2.90757/sec | failed: 2 events; avg 68.757318ms - 2.90757/sec 2023-03-02T14:17:07.513Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #80 for future & fallible event' TIMED OUT after 153.160593ms 2023-03-02T14:17:07.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #80 for future & fallible event' ended after running for 687.930815ms -- stats: | ok: 2 events; avg 101.303771ms - 2.90727/sec | time out: 2 events; avg 156.484634ms - 2.90727/sec | failed: 2 events; avg 68.797141ms - 2.90727/sec 2023-03-02T14:17:07.513Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #81 for future & fallible event' TIMED OUT after 153.220167ms 2023-03-02T14:17:07.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #81 for future & fallible event' ended after running for 688.003541ms -- stats: | ok: 2 events; avg 101.314425ms - 2.90696/sec | time out: 2 events; avg 156.613961ms - 2.90696/sec | failed: 2 events; avg 68.684272ms - 2.90696/sec 2023-03-02T14:17:07.513Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #82 for future & fallible event' TIMED OUT after 153.295625ms 2023-03-02T14:17:07.513Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #82 for future & fallible event' ended after running for 688.129301ms -- stats: | ok: 2 events; avg 101.277292ms - 2.90643/sec | time out: 2 events; avg 156.749338ms - 2.90643/sec | failed: 2 events; avg 68.726383ms - 2.90643/sec 2023-03-02T14:17:07.513Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #83 for future & fallible event' TIMED OUT after 153.394989ms 2023-03-02T14:17:07.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #83 for future & fallible event' ended after running for 688.200418ms -- stats: | ok: 2 events; avg 101.257727ms - 2.90613/sec | time out: 2 events; avg 156.815618ms - 2.90613/sec | failed: 2 events; avg 68.783931ms - 2.90613/sec 2023-03-02T14:17:07.514Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #84 for future & fallible event' TIMED OUT after 153.452317ms 2023-03-02T14:17:07.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #84 for future & fallible event' ended after running for 688.238373ms -- stats: | ok: 2 events; avg 101.24363ms - 2.90597/sec | time out: 2 events; avg 156.844437ms - 2.90597/sec | failed: 2 events; avg 68.818405ms - 2.90597/sec 2023-03-02T14:17:07.514Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #85 for future & fallible event' TIMED OUT after 153.511966ms 2023-03-02T14:17:07.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #85 for future & fallible event' ended after running for 688.309451ms -- stats: | ok: 2 events; avg 101.228975ms - 2.90567/sec | time out: 2 events; avg 156.872422ms - 2.90567/sec | failed: 2 events; avg 68.852678ms - 2.90567/sec 2023-03-02T14:17:07.514Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #86 for future & fallible event' TIMED OUT after 153.572673ms 2023-03-02T14:17:07.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #86 for future & fallible event' ended after running for 688.38299ms -- stats: | ok: 2 events; avg 101.213567ms - 2.90536/sec | time out: 2 events; avg 156.862497ms - 2.90536/sec | failed: 2 events; avg 68.884626ms - 2.90536/sec 2023-03-02T14:17:07.514Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #87 for future & fallible event' TIMED OUT after 153.633019ms 2023-03-02T14:17:07.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #87 for future & fallible event' ended after running for 688.455421ms -- stats: | ok: 2 events; avg 101.199582ms - 2.90505/sec | time out: 2 events; avg 156.877384ms - 2.90505/sec | failed: 2 events; avg 68.959817ms - 2.90505/sec 2023-03-02T14:17:07.514Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #88 for future & fallible event' TIMED OUT after 153.695375ms 2023-03-02T14:17:07.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #88 for future & fallible event' ended after running for 688.52475ms -- stats: | ok: 2 events; avg 101.184353ms - 2.90476/sec | time out: 2 events; avg 156.902999ms - 2.90476/sec | failed: 2 events; avg 69.003038ms - 2.90476/sec 2023-03-02T14:17:07.514Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #89 for future & fallible event' TIMED OUT after 153.758613ms 2023-03-02T14:17:07.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #89 for future & fallible event' ended after running for 688.59883ms -- stats: | ok: 2 events; avg 101.170957ms - 2.90445/sec | time out: 2 events; avg 156.931385ms - 2.90445/sec | failed: 2 events; avg 69.038838ms - 2.90445/sec 2023-03-02T14:17:07.514Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #90 for future & fallible event' TIMED OUT after 153.769791ms 2023-03-02T14:17:07.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #90 for future & fallible event' ended after running for 688.655722ms -- stats: | ok: 2 events; avg 101.15651ms - 2.90421/sec | time out: 2 events; avg 156.932414ms - 2.90421/sec | failed: 2 events; avg 69.07396ms - 2.90421/sec 2023-03-02T14:17:07.514Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #91 for future & fallible event' TIMED OUT after 153.822152ms 2023-03-02T14:17:07.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #91 for future & fallible event' ended after running for 688.722143ms -- stats: | ok: 2 events; avg 101.142891ms - 2.90393/sec | time out: 2 events; avg 156.917244ms - 2.90393/sec | failed: 2 events; avg 69.163017ms - 2.90393/sec 2023-03-02T14:17:07.514Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #92 for future & fallible event' TIMED OUT after 153.905375ms 2023-03-02T14:17:07.514Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #92 for future & fallible event' ended after running for 688.820323ms -- stats: | ok: 2 events; avg 101.127774ms - 2.90351/sec | time out: 2 events; avg 156.952381ms - 2.90351/sec | failed: 2 events; avg 69.206282ms - 2.90351/sec 2023-03-02T14:17:07.515Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #93 for future & fallible event' TIMED OUT after 154.003059ms 2023-03-02T14:17:07.515Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #93 for future & fallible event' ended after running for 688.928274ms -- stats: | ok: 2 events; avg 101.114333ms - 2.90306/sec | time out: 2 events; avg 156.997532ms - 2.90306/sec | failed: 2 events; avg 69.242202ms - 2.90306/sec 2023-03-02T14:17:07.515Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #94 for future & fallible event' TIMED OUT after 154.059575ms 2023-03-02T14:17:07.515Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #94 for future & fallible event' ended after running for 688.994383ms -- stats: | ok: 2 events; avg 101.098798ms - 2.90278/sec | time out: 2 events; avg 157.022595ms - 2.90278/sec | failed: 2 events; avg 69.276467ms - 2.90278/sec 2023-03-02T14:17:07.515Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #95 for future & fallible event' TIMED OUT after 154.116372ms 2023-03-02T14:17:07.515Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #95 for future & fallible event' ended after running for 689.060704ms -- stats: | ok: 2 events; avg 101.085208ms - 2.90250/sec | time out: 2 events; avg 157.048523ms - 2.90250/sec | failed: 2 events; avg 69.309756ms - 2.90250/sec 2023-03-02T14:17:07.520Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #96 for future & fallible event' TIMED OUT after 159.094107ms 2023-03-02T14:17:07.520Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #96 for future & fallible event' ended after running for 694.087ms -- stats: | ok: 2 events; avg 101.072378ms - 2.88148/sec | time out: 2 events; avg 159.535348ms - 2.88148/sec | failed: 2 events; avg 69.341913ms - 2.88148/sec 2023-03-02T14:17:07.520Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #97 for future & fallible event' TIMED OUT after 159.193235ms 2023-03-02T14:17:07.520Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #97 for future & fallible event' ended after running for 694.163918ms -- stats: | ok: 2 events; avg 101.059161ms - 2.88116/sec | time out: 2 events; avg 159.581304ms - 2.88116/sec | failed: 2 events; avg 69.375277ms - 2.88116/sec 2023-03-02T14:17:07.520Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #98 for future & fallible event' TIMED OUT after 159.248884ms 2023-03-02T14:17:07.520Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #98 for future & fallible event' ended after running for 694.231722ms -- stats: | ok: 2 events; avg 101.042733ms - 2.88088/sec | time out: 2 events; avg 159.604877ms - 2.88088/sec | failed: 2 events; avg 69.409758ms - 2.88088/sec 2023-03-02T14:17:07.520Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #99 for future & fallible event' TIMED OUT after 159.304408ms 2023-03-02T14:17:07.520Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #99 for future & fallible event' ended after running for 694.299221ms -- stats: | ok: 2 events; avg 101.024725ms - 2.88060/sec | time out: 2 events; avg 159.603715ms - 2.88060/sec | failed: 2 events; avg 69.444917ms - 2.88060/sec 2023-03-02T14:17:07.520Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #100 for future & fallible event' TIMED OUT after 159.360653ms 2023-03-02T14:17:07.520Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #100 for future & fallible event' ended after running for 694.368288ms -- stats: | ok: 2 events; avg 100.986838ms - 2.88032/sec | time out: 2 events; avg 159.644306ms - 2.88032/sec | failed: 2 events; avg 69.510408ms - 2.88032/sec 2023-03-02T14:17:07.520Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #101 for future & fallible event' TIMED OUT after 159.41724ms 2023-03-02T14:17:07.520Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #101 for future & fallible event' ended after running for 694.436158ms -- stats: | ok: 2 events; avg 101.007573ms - 2.88003/sec | time out: 2 events; avg 159.641743ms - 2.88003/sec | failed: 2 events; avg 69.512188ms - 2.88003/sec 2023-03-02T14:17:07.520Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #102 for future & fallible event' TIMED OUT after 159.50725ms 2023-03-02T14:17:07.520Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #102 for future & fallible event' ended after running for 694.543256ms -- stats: | ok: 2 events; avg 100.996226ms - 2.87959/sec | time out: 2 events; avg 159.672171ms - 2.87959/sec | failed: 2 events; avg 69.580063ms - 2.87959/sec 2023-03-02T14:17:07.521Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #103 for future & fallible event' TIMED OUT after 159.587235ms 2023-03-02T14:17:07.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #103 for future & fallible event' ended after running for 694.633522ms -- stats: | ok: 2 events; avg 101.137683ms - 2.87922/sec | time out: 2 events; avg 159.702316ms - 2.87922/sec | failed: 2 events; avg 69.462821ms - 2.87922/sec 2023-03-02T14:17:07.521Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #104 for future & fallible event' TIMED OUT after 159.645671ms 2023-03-02T14:17:07.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #104 for future & fallible event' ended after running for 694.701351ms -- stats: | ok: 2 events; avg 101.124793ms - 2.87893/sec | time out: 2 events; avg 159.729987ms - 2.87893/sec | failed: 2 events; avg 69.50327ms - 2.87893/sec 2023-03-02T14:17:07.521Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #105 for future & fallible event' TIMED OUT after 159.702819ms 2023-03-02T14:17:07.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #105 for future & fallible event' ended after running for 694.770369ms -- stats: | ok: 2 events; avg 101.109907ms - 2.87865/sec | time out: 2 events; avg 159.754574ms - 2.87865/sec | failed: 2 events; avg 69.540724ms - 2.87865/sec 2023-03-02T14:17:07.521Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #106 for future & fallible event' TIMED OUT after 159.763791ms 2023-03-02T14:17:07.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #106 for future & fallible event' ended after running for 694.847978ms -- stats: | ok: 2 events; avg 101.095349ms - 2.87833/sec | time out: 2 events; avg 159.782499ms - 2.87833/sec | failed: 2 events; avg 69.5749ms - 2.87833/sec 2023-03-02T14:17:07.521Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #107 for future & fallible event' TIMED OUT after 159.827886ms 2023-03-02T14:17:07.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #107 for future & fallible event' ended after running for 687.692403ms -- stats: | ok: 2 events; avg 101.079822ms - 2.90828/sec | time out: 2 events; avg 159.812033ms - 2.90828/sec | failed: 2 events; avg 69.608971ms - 2.90828/sec 2023-03-02T14:17:07.521Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #108 for future & fallible event' TIMED OUT after 159.885942ms 2023-03-02T14:17:07.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #108 for future & fallible event' ended after running for 687.739692ms -- stats: | ok: 2 events; avg 101.067007ms - 2.90808/sec | time out: 2 events; avg 159.838378ms - 2.90808/sec | failed: 2 events; avg 69.638848ms - 2.90808/sec 2023-03-02T14:17:07.521Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #109 for future & fallible event' TIMED OUT after 159.950653ms 2023-03-02T14:17:07.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #109 for future & fallible event' ended after running for 687.808509ms -- stats: | ok: 2 events; avg 101.051882ms - 2.90779/sec | time out: 2 events; avg 159.869105ms - 2.90779/sec | failed: 2 events; avg 69.676518ms - 2.90779/sec 2023-03-02T14:17:07.521Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #110 for future & fallible event' TIMED OUT after 160.016157ms 2023-03-02T14:17:07.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #110 for future & fallible event' ended after running for 687.850439ms -- stats: | ok: 2 events; avg 101.033099ms - 2.90761/sec | time out: 2 events; avg 159.863949ms - 2.90761/sec | failed: 2 events; avg 69.70989ms - 2.90761/sec 2023-03-02T14:17:07.521Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #111 for future & fallible event' TIMED OUT after 160.075541ms 2023-03-02T14:17:07.521Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #111 for future & fallible event' ended after running for 687.947441ms -- stats: | ok: 2 events; avg 101.016402ms - 2.90720/sec | time out: 2 events; avg 159.880161ms - 2.90720/sec | failed: 2 events; avg 69.782972ms - 2.90720/sec 2023-03-02T14:17:07.521Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #112 for future & fallible event' TIMED OUT after 160.168122ms 2023-03-02T14:17:07.522Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #112 for future & fallible event' ended after running for 688.02717ms -- stats: | ok: 2 events; avg 101.000518ms - 2.90686/sec | time out: 2 events; avg 159.920692ms - 2.90686/sec | failed: 2 events; avg 69.828391ms - 2.90686/sec 2023-03-02T14:17:07.522Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #113 for future & fallible event' TIMED OUT after 160.226999ms 2023-03-02T14:17:07.522Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #113 for future & fallible event' ended after running for 688.102629ms -- stats: | ok: 2 events; avg 100.984886ms - 2.90654/sec | time out: 2 events; avg 159.947202ms - 2.90654/sec | failed: 2 events; avg 69.864236ms - 2.90654/sec 2023-03-02T14:17:07.522Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #114 for future & fallible event' TIMED OUT after 157.756468ms 2023-03-02T14:17:07.522Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #114 for future & fallible event' ended after running for 688.214118ms -- stats: | ok: 2 events; avg 100.971431ms - 2.90607/sec | time out: 2 events; avg 158.708498ms - 2.90607/sec | failed: 2 events; avg 69.901593ms - 2.90607/sec 2023-03-02T14:17:07.522Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #115 for future & fallible event' TIMED OUT after 157.062573ms 2023-03-02T14:17:07.522Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #115 for future & fallible event' ended after running for 688.287952ms -- stats: | ok: 2 events; avg 100.956865ms - 2.90576/sec | time out: 2 events; avg 158.303365ms - 2.90576/sec | failed: 2 events; avg 71.261063ms - 2.90576/sec 2023-03-02T14:17:07.522Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #116 for future & fallible event' TIMED OUT after 156.969275ms 2023-03-02T14:17:07.522Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #116 for future & fallible event' ended after running for 688.361656ms -- stats: | ok: 2 events; avg 100.941353ms - 2.90545/sec | time out: 2 events; avg 158.247605ms - 2.90545/sec | failed: 2 events; avg 71.701169ms - 2.90545/sec 2023-03-02T14:17:07.528Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #117 for future & fallible event' TIMED OUT after 163.076473ms 2023-03-02T14:17:07.528Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #117 for future & fallible event' ended after running for 694.643968ms -- stats: | ok: 2 events; avg 100.925736ms - 2.87917/sec | time out: 2 events; avg 161.292404ms - 2.87917/sec | failed: 2 events; avg 71.809843ms - 2.87917/sec 2023-03-02T14:17:07.528Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #118 for future & fallible event' TIMED OUT after 163.070989ms 2023-03-02T14:17:07.528Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #118 for future & fallible event' ended after running for 694.780675ms -- stats: | ok: 2 events; avg 100.909613ms - 2.87861/sec | time out: 2 events; avg 161.286712ms - 2.87861/sec | failed: 2 events; avg 71.912967ms - 2.87861/sec 2023-03-02T14:17:07.528Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #119 for future & fallible event' TIMED OUT after 163.045952ms 2023-03-02T14:17:07.529Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #119 for future & fallible event' ended after running for 694.877221ms -- stats: | ok: 2 events; avg 100.893289ms - 2.87821/sec | time out: 2 events; avg 161.271185ms - 2.87821/sec | failed: 2 events; avg 72.009407ms - 2.87821/sec 2023-03-02T14:17:07.529Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #120 for future & fallible event' TIMED OUT after 162.984864ms 2023-03-02T14:17:07.529Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #120 for future & fallible event' ended after running for 694.961577ms -- stats: | ok: 2 events; avg 100.878663ms - 2.87786/sec | time out: 2 events; avg 161.237717ms - 2.87786/sec | failed: 2 events; avg 72.120443ms - 2.87786/sec 2023-03-02T14:17:07.529Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event: Pipeline #121 for future & fallible event' TIMED OUT after 162.931325ms 2023-03-02T14:17:07.529Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event: Pipeline #121 for future & fallible event' ended after running for 695.047251ms -- stats: | ok: 2 events; avg 100.863427ms - 2.87750/sec | time out: 2 events; avg 161.207885ms - 2.87750/sec | failed: 2 events; avg 72.223641ms - 2.87750/sec ok <0.772s> test multi::tests::undegradable_latencies ... 2023-03-02T14:17:07.534Z 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): 72.471µs 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #0)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #1)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #2)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #3)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #4)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #5)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #6)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #7)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #8)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #9)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #10)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #11)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #12)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #13)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #14)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #15)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #16)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #17)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #18)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #19)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #20)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #21)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #22)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #23)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #24)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #25)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #26)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #27)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #28)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.537Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #29)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #30)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #31)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #32)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #33)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #34)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #35)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #36)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #37)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #38)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.540Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #39)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #40)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #41)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #42)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #43)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #44)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #45)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #46)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #47)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #48)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #49)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #50)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #51)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #52)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #53)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #54)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #55)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #56)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #57)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #58)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #59)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.541Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #60)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.542Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #61)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.543Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #62)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.543Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #63)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.543Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #64)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.543Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #65)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #66)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #67)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #68)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #69)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #70)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #71)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #72)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #73)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #74)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #75)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #76)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #77)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #78)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.545Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #79)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #80)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #81)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #82)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #83)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #84)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #85)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #86)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #87)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #88)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.549Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #89)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #90)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #91)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #92)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #93)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #94)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #95)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #96)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #97)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #98)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #99)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #100)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #101)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #102)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #103)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #104)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #105)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #106)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #107)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #108)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #109)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #110)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #111)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #112)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #113)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #114)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #115)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #116)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #117)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #118)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #119)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #120)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #121)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #122)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #123)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #124)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.550Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #125)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.551Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #126)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.551Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #127)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.551Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #128)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #129)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #130)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #131)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #132)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #133)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #134)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #135)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #136)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #137)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #138)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #139)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #140)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #141)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #142)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #143)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.557Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #144)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #145)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #146)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #147)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #148)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #149)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #150)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #151)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #152)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #153)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #154)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #155)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #156)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #157)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #158)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #159)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #160)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #161)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #162)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #163)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #164)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #165)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #166)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #167)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #168)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #169)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #170)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #171)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #172)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #173)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #174)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #175)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.558Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #176)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #177)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #178)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #179)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #180)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #181)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #182)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #183)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #184)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #185)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #186)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #187)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #188)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #189)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #190)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #191)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #192)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #193)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #194)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #195)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #196)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.564Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #197)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #198)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #199)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #200)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #201)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #202)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #203)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #204)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #205)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #206)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #207)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #208)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #209)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #210)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #211)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #212)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #213)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #214)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #215)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #216)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #217)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #218)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #219)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #220)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #221)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #222)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #223)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.565Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #224)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #225)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #226)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #227)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #228)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #229)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #230)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #231)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #232)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #233)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #234)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #235)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #236)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #237)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #238)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #239)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #240)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #241)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #242)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #243)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #244)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #245)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #246)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.571Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #247)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.572Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #248)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.572Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #249)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.572Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #250)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.572Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #251)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.572Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #252)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.572Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #253)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.572Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'BLOATED: #254)' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:17:07.572Z 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: 29.386428ms 3. Time to produce & consume another SIMPLE event (with lots of -- 256 -- sleeping Multi Tokio tasks): 7.384µs 2023-03-02T14:17:07.572Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'SIMPLE: solo pipeline' ended after running for 37.633466ms -- stats: | ok: 2 events 2023-03-02T14:17:07.578Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #0)' ended after running for 41.386454ms -- stats: | ok: 1 events 2023-03-02T14:17:07.578Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #1)' ended after running for 41.547402ms -- stats: | ok: 1 events 2023-03-02T14:17:07.578Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #2)' ended after running for 41.580199ms -- stats: | ok: 1 events 2023-03-02T14:17:07.578Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #3)' ended after running for 41.598594ms -- stats: | ok: 1 events 2023-03-02T14:17:07.578Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #4)' ended after running for 41.613131ms -- stats: | ok: 1 events 2023-03-02T14:17:07.578Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #5)' ended after running for 41.6108ms -- stats: | ok: 1 events 2023-03-02T14:17:07.578Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #6)' ended after running for 41.620961ms -- stats: | ok: 1 events 2023-03-02T14:17:07.578Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #7)' ended after running for 41.63068ms -- stats: | ok: 1 events 2023-03-02T14:17:07.578Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #8)' ended after running for 41.675838ms -- stats: | ok: 1 events 2023-03-02T14:17:07.578Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #9)' ended after running for 41.686644ms -- stats: | ok: 1 events 2023-03-02T14:17:07.578Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #10)' ended after running for 41.697186ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #11)' ended after running for 41.707266ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #12)' ended after running for 41.717848ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #13)' ended after running for 41.728319ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #14)' ended after running for 41.740981ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #15)' ended after running for 41.753416ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #16)' ended after running for 41.764539ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #17)' ended after running for 41.776885ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #18)' ended after running for 41.786404ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #19)' ended after running for 41.797055ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #20)' ended after running for 41.807592ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #21)' ended after running for 41.818785ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #22)' ended after running for 41.829241ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #23)' ended after running for 41.839056ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #24)' ended after running for 41.851156ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #25)' ended after running for 41.862279ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #26)' ended after running for 41.874435ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #27)' ended after running for 41.887883ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #28)' ended after running for 41.899111ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #29)' ended after running for 41.910128ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #30)' ended after running for 38.998153ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #31)' ended after running for 38.981762ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #32)' ended after running for 38.989753ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #33)' ended after running for 39.001226ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #34)' ended after running for 39.012679ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #35)' ended after running for 39.053226ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #36)' ended after running for 39.035803ms -- stats: | ok: 1 events 2023-03-02T14:17:07.579Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #37)' ended after running for 39.047391ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #38)' ended after running for 39.058304ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #39)' ended after running for 39.070158ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #40)' ended after running for 39.098369ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #41)' ended after running for 39.109081ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #42)' ended after running for 39.120363ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #43)' ended after running for 39.134294ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #44)' ended after running for 39.146419ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #45)' ended after running for 39.155687ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #46)' ended after running for 39.168003ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #47)' ended after running for 39.179181ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #48)' ended after running for 39.191036ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #49)' ended after running for 39.201667ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #50)' ended after running for 39.212289ms -- stats: | ok: 1 events 2023-03-02T14:17:07.580Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #51)' ended after running for 39.224168ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #52)' ended after running for 42.074119ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #53)' ended after running for 42.115051ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #54)' ended after running for 42.130444ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #55)' ended after running for 42.133988ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #56)' ended after running for 42.14869ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #57)' ended after running for 42.163286ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #58)' ended after running for 42.178564ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #59)' ended after running for 42.194595ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #60)' ended after running for 42.211823ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #61)' ended after running for 40.807843ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #62)' ended after running for 40.795712ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #63)' ended after running for 40.83879ms -- stats: | ok: 1 events 2023-03-02T14:17:07.583Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #64)' ended after running for 40.85464ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #65)' ended after running for 40.885888ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #66)' ended after running for 38.786704ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #67)' ended after running for 38.764921ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #68)' ended after running for 38.771547ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #69)' ended after running for 38.777863ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #70)' ended after running for 38.788579ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #71)' ended after running for 38.797918ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #72)' ended after running for 38.805186ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #73)' ended after running for 38.813893ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #74)' ended after running for 38.821863ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #75)' ended after running for 38.828113ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #76)' ended after running for 38.838765ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #77)' ended after running for 38.850695ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #78)' ended after running for 38.86045ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #79)' ended after running for 38.870935ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #80)' ended after running for 34.916675ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #81)' ended after running for 34.897892ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #82)' ended after running for 34.90277ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #83)' ended after running for 34.910734ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #84)' ended after running for 34.920604ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #85)' ended after running for 34.931506ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #86)' ended after running for 34.943878ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #87)' ended after running for 34.914163ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #88)' ended after running for 34.959166ms -- stats: | ok: 1 events 2023-03-02T14:17:07.584Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #89)' ended after running for 34.972514ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #90)' ended after running for 37.032113ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #91)' ended after running for 37.068409ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #92)' ended after running for 37.079612ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #93)' ended after running for 37.088724ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #94)' ended after running for 37.096604ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #95)' ended after running for 37.103486ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #96)' ended after running for 37.113025ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #97)' ended after running for 37.120514ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #98)' ended after running for 37.128008ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #99)' ended after running for 37.135201ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #100)' ended after running for 37.145597ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #101)' ended after running for 37.15676ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #102)' ended after running for 37.169166ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #103)' ended after running for 37.180188ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #104)' ended after running for 37.189406ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #105)' ended after running for 37.183617ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #106)' ended after running for 37.19459ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #107)' ended after running for 37.20683ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #108)' ended after running for 37.215667ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #109)' ended after running for 37.226574ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #110)' ended after running for 37.236965ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #111)' ended after running for 37.249858ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #112)' ended after running for 37.29691ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #113)' ended after running for 37.309852ms -- stats: | ok: 1 events 2023-03-02T14:17:07.587Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #114)' ended after running for 37.322926ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #115)' ended after running for 37.347191ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #116)' ended after running for 37.359918ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #117)' ended after running for 37.369301ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #118)' ended after running for 37.38072ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #119)' ended after running for 37.390529ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #120)' ended after running for 37.403838ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #121)' ended after running for 37.415546ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #122)' ended after running for 37.407251ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #123)' ended after running for 37.417306ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #124)' ended after running for 37.428434ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #125)' ended after running for 37.439211ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #126)' ended after running for 37.450665ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #127)' ended after running for 37.461722ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #128)' ended after running for 37.474575ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #129)' ended after running for 31.050263ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #130)' ended after running for 31.033642ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #131)' ended after running for 31.043461ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #132)' ended after running for 31.055356ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #133)' ended after running for 31.067071ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #134)' ended after running for 31.077436ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #135)' ended after running for 31.088974ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #136)' ended after running for 31.100253ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #137)' ended after running for 31.141737ms -- stats: | ok: 1 events 2023-03-02T14:17:07.588Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #138)' ended after running for 31.153561ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #139)' ended after running for 36.63285ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #140)' ended after running for 36.67492ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #141)' ended after running for 36.648674ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #142)' ended after running for 36.656334ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #143)' ended after running for 36.66681ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #144)' ended after running for 36.679226ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #145)' ended after running for 36.690709ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #146)' ended after running for 36.703141ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #147)' ended after running for 36.715507ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #148)' ended after running for 36.726088ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #149)' ended after running for 36.739547ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #150)' ended after running for 36.791411ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #151)' ended after running for 36.803712ms -- stats: | ok: 1 events 2023-03-02T14:17:07.594Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #152)' ended after running for 36.814845ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #153)' ended after running for 36.80868ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #154)' ended after running for 36.820028ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #155)' ended after running for 36.830208ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #156)' ended after running for 36.839472ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #157)' ended after running for 36.849933ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #158)' ended after running for 36.862319ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #159)' ended after running for 36.875511ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #160)' ended after running for 36.887281ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #161)' ended after running for 36.899081ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #162)' ended after running for 36.912118ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #163)' ended after running for 36.925131ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #164)' ended after running for 36.951386ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #165)' ended after running for 36.961622ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #166)' ended after running for 36.972063ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #167)' ended after running for 36.985216ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #168)' ended after running for 36.997867ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #169)' ended after running for 37.008203ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #170)' ended after running for 37.020088ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #171)' ended after running for 37.031862ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #172)' ended after running for 37.043853ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #173)' ended after running for 37.055817ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #174)' ended after running for 37.067286ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #175)' ended after running for 37.077918ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #176)' ended after running for 37.121657ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #177)' ended after running for 31.575847ms -- stats: | ok: 1 events 2023-03-02T14:17:07.595Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #178)' ended after running for 31.560093ms -- stats: | ok: 1 events 2023-03-02T14:17:07.596Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #179)' ended after running for 31.570845ms -- stats: | ok: 1 events 2023-03-02T14:17:07.596Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #180)' ended after running for 31.583882ms -- stats: | ok: 1 events 2023-03-02T14:17:07.596Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #181)' ended after running for 31.596152ms -- stats: | ok: 1 events 2023-03-02T14:17:07.596Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #182)' ended after running for 31.606634ms -- stats: | ok: 1 events 2023-03-02T14:17:07.596Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #183)' ended after running for 31.627716ms -- stats: | ok: 1 events 2023-03-02T14:17:07.596Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #184)' ended after running for 31.639251ms -- stats: | ok: 1 events 2023-03-02T14:17:07.596Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #185)' ended after running for 31.650007ms -- stats: | ok: 1 events 2023-03-02T14:17:07.596Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #186)' ended after running for 31.660914ms -- stats: | ok: 1 events 2023-03-02T14:17:07.596Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #187)' ended after running for 31.673225ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #188)' ended after running for 34.681085ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #189)' ended after running for 34.725862ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #190)' ended after running for 34.738754ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #191)' ended after running for 34.749577ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #192)' ended after running for 34.76304ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #193)' ended after running for 34.776524ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #194)' ended after running for 34.746955ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #195)' ended after running for 34.756333ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #196)' ended after running for 34.767366ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #197)' ended after running for 34.779051ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #198)' ended after running for 34.7906ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #199)' ended after running for 34.801953ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #200)' ended after running for 34.855005ms -- stats: | ok: 1 events 2023-03-02T14:17:07.599Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #201)' ended after running for 34.858334ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #202)' ended after running for 34.903872ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #203)' ended after running for 34.918013ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #204)' ended after running for 34.929105ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #205)' ended after running for 34.940765ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #206)' ended after running for 34.9528ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #207)' ended after running for 34.963291ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #208)' ended after running for 34.975016ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #209)' ended after running for 34.98894ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #210)' ended after running for 35.001206ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #211)' ended after running for 35.010354ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #212)' ended after running for 35.023356ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #213)' ended after running for 35.052604ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #214)' ended after running for 35.066458ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #215)' ended after running for 35.077567ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #216)' ended after running for 35.086443ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #217)' ended after running for 35.098845ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #218)' ended after running for 35.111532ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #219)' ended after running for 35.123336ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #220)' ended after running for 35.13501ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #221)' ended after running for 35.147441ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #222)' ended after running for 35.160333ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #223)' ended after running for 35.171897ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #224)' ended after running for 35.20919ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #225)' ended after running for 29.599682ms -- stats: | ok: 1 events 2023-03-02T14:17:07.600Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #226)' ended after running for 29.585978ms -- stats: | ok: 1 events 2023-03-02T14:17:07.601Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #227)' ended after running for 29.597145ms -- stats: | ok: 1 events 2023-03-02T14:17:07.601Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #228)' ended after running for 29.609657ms -- stats: | ok: 1 events 2023-03-02T14:17:07.601Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #229)' ended after running for 29.620765ms -- stats: | ok: 1 events 2023-03-02T14:17:07.601Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #230)' ended after running for 29.63309ms -- stats: | ok: 1 events 2023-03-02T14:17:07.601Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #231)' ended after running for 29.645421ms -- stats: | ok: 1 events 2023-03-02T14:17:07.601Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #232)' ended after running for 29.659832ms -- stats: | ok: 1 events 2023-03-02T14:17:07.602Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #233)' ended after running for 31.373421ms -- stats: | ok: 1 events 2023-03-02T14:17:07.602Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #234)' ended after running for 31.407576ms -- stats: | ok: 1 events 2023-03-02T14:17:07.603Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #235)' ended after running for 31.419441ms -- stats: | ok: 1 events 2023-03-02T14:17:07.603Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #236)' ended after running for 31.432238ms -- stats: | ok: 1 events 2023-03-02T14:17:07.606Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #237)' ended after running for 35.272845ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #238)' ended after running for 35.318153ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #239)' ended after running for 35.332569ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #240)' ended after running for 35.346935ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #241)' ended after running for 35.360258ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #242)' ended after running for 35.372704ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #243)' ended after running for 35.383768ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #244)' ended after running for 35.368208ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #245)' ended after running for 35.375943ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #246)' ended after running for 35.386715ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #247)' ended after running for 35.396905ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #248)' ended after running for 35.40896ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #249)' ended after running for 35.404589ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #250)' ended after running for 35.41698ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #251)' ended after running for 35.429657ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #252)' ended after running for 35.442925ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #253)' ended after running for 35.457511ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #254)' ended after running for 35.47086ms -- stats: | ok: 1 events 2023-03-02T14:17:07.607Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'BLOATED: #255)' ended after running for 35.481131ms -- stats: | ok: 1 events ok <0.080s> 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 <17.560s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <12.179s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::multiple_producers_single_consumer ... 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 365 reported stack was full CONSUMPTION: 4096000 successful, 6 reported stack was empty ok <8.131s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::single_producer_multiple_consumers ... 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 0 reports of 'full container' CONSUMPTIONS: 4096000 successful, 298 reports of 'empty container' ok <7.331s> test ogre_std::ogre_queues::atomic_queues::blocking_queue::tests::test_blocking ... Asserting pass 'virgin' Blocking on empty (from a virgin container): 100.563527ms Blocking on empty (again): 100.509888ms Non-Blocking 'try_consume()': 5.388µs Waiting to dequeue: 56.821897ms Blocking 'produce()' (won't block as there are free slots): 10.852µs Blocking on full: 100.637887ms Blocking on full (again): 100.670098ms Non-Blocking 'try_produce()': 5.379µs Waiting to 'produce()': 54.284247ms Blocking 'consume()' (won't block as there are elements): 6.096µs Asserting pass 'non-virgin' Blocking on empty (from a non-virgin container): 100.505115ms Blocking on empty (again): 100.373957ms Non-Blocking 'try_consume()': 5.409µs Waiting to dequeue: 54.184182ms Blocking 'produce()' (won't block as there are free slots): 10.717µs Blocking on full: 100.833857ms Blocking on full (again): 100.353607ms Non-Blocking 'try_produce()': 5.449µs Waiting to 'produce()': 57.061707ms Blocking 'consume()' (won't block as there are elements): 10.747µs Asserting pass 'promiscuous' Blocking on empty (from a promiscuous container): 100.504554ms Blocking on empty (again): 100.66281ms Non-Blocking 'try_consume()': 5.399µs Waiting to dequeue: 53.644949ms Blocking 'produce()' (won't block as there are free slots): 8.215µs Blocking on full: 100.543923ms Blocking on full (again): 100.711787ms Non-Blocking 'try_produce()': 3.098µs Waiting to 'produce()': 55.67906ms Blocking 'consume()' (won't block as there are elements): 5.674µs ok <1.555s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::basic_queue_use_cases ... ok <0.167s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <15.891s> test ogre_std::ogre_queues::atomic_queues::non_blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.226s> 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: 449630, enqueuer_tail: 454981, dequeuer_tail: 454981 CONTENTS: 5351 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 454981 successful, 151 reported queue was full CONSUMPTION: 449630 successful, 119238 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 931982, enqueuer_tail: 996433, dequeuer_tail: 993254 CONTENTS: 64451 elements, 65536 buffer -- concurrent_enqueuers: 2 PRODUCTION: 996433 successful, 347 reported queue was full CONSUMPTION: 931982 successful, 119238 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 1423653, enqueuer_tail: 1488780, dequeuer_tail: 1488779 CONTENTS: 65127 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 1488779 successful, 524 reported queue was full CONSUMPTION: 1423653 successful, 159044 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 1943116, enqueuer_tail: 1982124, dequeuer_tail: 1982124 CONTENTS: 39008 elements, 65536 buffer -- concurrent_enqueuers: 0 PRODUCTION: 1982124 successful, 702 reported queue was full CONSUMPTION: 1943116 successful, 170058 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2326307, enqueuer_tail: 2386990, dequeuer_tail: 2355502 CONTENTS: 60682 elements, 65536 buffer -- concurrent_enqueuers: 6 PRODUCTION: 2386987 successful, 841 reported queue was full CONSUMPTION: 2326307 successful, 405865 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 2812323, enqueuer_tail: 2877609, dequeuer_tail: 2826950 CONTENTS: 65286 elements, 65536 buffer -- concurrent_enqueuers: 3 PRODUCTION: 2877609 successful, 1007 reported queue was full CONSUMPTION: 2812323 successful, 453061 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 3159089, enqueuer_tail: 3224195, dequeuer_tail: 3175269 CONTENTS: 65106 elements, 65536 buffer -- concurrent_enqueuers: 3 PRODUCTION: 3224194 successful, 1201 reported queue was full CONSUMPTION: 3159089 successful, 783516 reported queue was empty Atomic BlockingQueue ''multiple_producers_single_consumer' test queue' STATE: head: 3645335, enqueuer_tail: 3710620, dequeuer_tail: 3710619 CONTENTS: 65285 elements, 65536 buffer -- concurrent_enqueuers: 1 PRODUCTION: 3710620 successful, 1358 reported queue was full CONSUMPTION: 3645335 successful, 834687 reported queue was empty 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 1494 reported stack was full CONSUMPTION: 4096000 successful, 948362 reported stack was empty ok <0.407s> 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, 268681099 reports of 'empty container' ok <3.991s> test ogre_std::ogre_queues::blocking_queue::tests::basic_queue_use_cases_blocking ... ok <0.000s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <13.098s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.453s> test ogre_std::ogre_queues::blocking_queue::tests::multiple_producers_single_consumer ... Producing already stopped but we are no longer consuming anything. So far, 4095962; wanted: 4096000 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 1466 reported stack was full CONSUMPTION: 4096000 successful, 30 reported stack was empty ok <33.247s> test ogre_std::ogre_queues::blocking_queue::tests::single_producer_multiple_consumers ... 'container_single_producer_multiple_consumers' test concluded with: PUBLISHMENTS: 4096000 successful, 27 reports of 'full container' CONSUMPTIONS: 4096000 successful, 1335 reports of 'empty container' ok <29.541s> test ogre_std::ogre_queues::blocking_queue::tests::test_blocking ... Asserting pass 'virgin' Blocking on empty (from a virgin queue): 100.321531ms Blocking on empty (again): 100.635486ms Non-Blocking 'try_dequeue()': 2.953µs Blocking enqueueing (won't block as there are free slots): 3.479µs Blocking on full: 100.3113ms Blocking on full (again): 100.257461ms Non-Blocking 'try_enqueue()': 2.952µs Blocking dequeueing (won't block as there are elements): 3.378µs Asserting pass 'non-virgin' Blocking on empty (from a non-virgin queue): 100.312934ms Blocking on empty (again): 100.488027ms Non-Blocking 'try_dequeue()': 5.343µs Blocking enqueueing (won't block as there are free slots): 8.301µs Blocking on full: 100.495868ms Blocking on full (again): 100.499872ms Non-Blocking 'try_enqueue()': 2.937µs Blocking dequeueing (won't block as there are elements): 5.67µs Asserting pass 'promiscuous' Blocking on empty (from a promiscuous queue): 100.589797ms Blocking on empty (again): 100.689591ms Non-Blocking 'try_dequeue()': 5.334µs Blocking enqueueing (won't block as there are free slots): 8.356µs Blocking on full: 100.495832ms Blocking on full (again): 100.358163ms Non-Blocking 'try_enqueue()': 3.108µs Blocking dequeueing (won't block as there are elements): 5.679µs 'interrupt()' causing blocking operations to return immediately: 11.253µs ok <1.214s> 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 <16.028s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <2.154s> test ogre_std::ogre_queues::full_sync_queues::non_blocking_queue::tests::multiple_producers_single_consumer ... Producing already stopped but we are no longer consuming anything. So far, 4095965; wanted: 4096000 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 232449669 reported stack was full CONSUMPTION: 4096000 successful, 104127 reported stack was empty ok <47.895s> 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, 249688738 reports of 'empty container' ok <50.752s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::basic_queue_use_cases ... ok <0.000s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::multiple_producers_and_consumers_all_in_and_out ... ok <13.002s> test ogre_std::ogre_queues::non_blocking_parking_lot_queue::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.396s> 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, 188712707 reported stack was full CONSUMPTION: 4096000 successful, 94184 reported stack was empty ok <12.211s> 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, 259003911 reports of 'empty container' ok <11.980s> 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.711s> test ogre_std::ogre_stacks::blocking_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.396s> 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 <6.712s> 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 <8.501s> 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 <12.806s> test ogre_std::ogre_stacks::non_blocking_atomic_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <1.791s> test ogre_std::ogre_stacks::non_blocking_atomic_stack::tests::multiple_producers_single_consumer ... Producing already stopped but we are no longer consuming anything. So far, 4095996; wanted: 4096000 'container_multiple_producers_single_consumer' test concluded with: PRODUCTION: 4096000 successful, 168828913 reported stack was full CONSUMPTION: 4096000 successful, 171164 reported stack was empty ok <32.734s> 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, 191331198 reports of 'empty container' ok <35.541s> 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.253s> test ogre_std::ogre_stacks::non_blocking_parking_lot_stack::tests::multiple_producers_and_consumers_single_in_and_out ... ok <0.401s> 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, 134663117 reported stack was full CONSUMPTION: 4096000 successful, 143839 reported stack was empty ok <6.805s> 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, 242848600 reports of 'empty container' ok <10.026s> test ogre_std::reference_counted_buffer_allocator::test::excessive_ref_decs - should panic ... 2023-03-02T14:24:27.800Z 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.003s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_logs_and_metrics ... 2023-03-02T14:24:27.805Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:24:27.805Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 79.995µs -- stats: | ok: 2 events ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 207.654µs ago Execution Start: 18.481µs after creation Execution Finish: 98.476µs after creation OK elements count: 2; OK elements average Future resolution time: -1s -- verify these values against the "executor closed" message TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- verify these values against the "executor closed" message FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- verify these values against the "executor closed" message ok <0.001s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_logs_and_no_metrics ... 2023-03-02T14:24:27.807Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Non-Futures / Non-Fallible Items & NO Metrics 2023-03-02T14:24:27.807Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 80.376µs -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 208.736µs ago Execution Start: 21.197µs after creation Execution Finish: 101.573µs after creation OK elements count: 0; OK elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- metrics are DISABLED -- verify these values against the "executor closed" message ok <0.001s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_metrics_and_no_logs ... ### Stats assertions for Stream pipeline executor named 'executor with metrics & NO logs' (Logs? false; Metrics? true) #### Creation time: 154.3µs ago Execution Start: 71.538µs after creation Execution Finish: 78.536µs after creation OK elements count: 2; OK elements average Future resolution time: -1s -- logs are DISABLED TIMED OUT elements count: 0; TIMED OUT elements average Future resolution time: 0s -- logs are DISABLED FAILED elements count: 0; FAILED elements average Future resolution time: 0s -- logs are DISABLED ok <0.001s> test stream_executor::tests::spawn_non_futures_non_fallible_executor_with_no_logs_and_no_metrics ... ### Stats assertions for Stream pipeline executor named 'executor with NO logs & NO metrics' (Logs? false; Metrics? false) #### Creation time: 93.548µs ago Execution Start: 21.408µs after creation Execution Finish: 26.275µ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-02T14:24:27.811Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Futures (NO timeouts) / Fallible Items & Metrics 2023-03-02T14:24:27.812Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"17"' in 235ns 2023-03-02T14:24:27.964Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"19"' in 190ns 2023-03-02T14:24:28.116Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 304.282339ms -- stats: | ok: 4 events; avg 75.802535ms - 13.14569/sec | failed: 2 events; avg 212ns - 6.57284/sec ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 305.3091ms ago Execution Start: 23.483µs after creation Execution Finish: 304.305822ms after creation OK elements count: 4; OK elements average Future resolution time: 0.075802535s -- 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.0000002125s -- verify these values against the "executor closed" message ok <0.307s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_logs_and_no_metrics ... 2023-03-02T14:24:28.126Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Futures (NO timeouts) / Fallible Items & NO Metrics 2023-03-02T14:24:28.126Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"17"' 2023-03-02T14:24:28.279Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"19"' 2023-03-02T14:24:28.431Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 304.787983ms -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 305.998449ms ago Execution Start: 266.015µs after creation Execution Finish: 305.053998ms 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.308s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_metrics_and_no_logs ... ### Stats assertions for Stream pipeline executor named 'executor with metrics & NO logs' (Logs? false; Metrics? true) #### Creation time: 303.609226ms ago Execution Start: 289.363µs after creation Execution Finish: 302.924719ms after creation OK elements count: 4; OK elements average Future resolution time: 0.07562967s -- 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.000001428s -- logs are DISABLED ok <0.306s> test stream_executor::tests::spawn_non_timeout_futures_fallible_executor_with_no_logs_and_no_metrics ... ### Stats assertions for Stream pipeline executor named 'executor with NO logs & NO metrics' (Logs? false; Metrics? false) #### Creation time: 303.604043ms ago Execution Start: 123.223µs after creation Execution Finish: 303.23909ms 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.308s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_logs_and_metrics ... 2023-03-02T14:24:29.071Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & metrics' started: Futures (with timeouts of 100ms) / Fallible Items & Metrics 2023-03-02T14:24:29.072Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"17"' in 8.551µs 2023-03-02T14:24:29.174Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & metrics' TIMED OUT after 101.65895ms 2023-03-02T14:24:29.174Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & metrics' yielded ERROR '"19"' in 10.786µs 2023-03-02T14:24:29.276Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & metrics' TIMED OUT after 101.157371ms 2023-03-02T14:24:29.277Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & metrics' ended after running for 205.169244ms -- stats: | ok: 2 events; avg 31.941µs - 9.74805/sec | time out: 2 events; avg 101.408161ms - 9.74805/sec | failed: 2 events; avg 9.668µs - 9.74805/sec ### Stats assertions for Stream pipeline executor named 'executor with logs & metrics' (Logs? true; Metrics? true) #### Creation time: 206.766121ms ago Execution Start: 118.526µs after creation Execution Finish: 205.28777ms after creation OK elements count: 2; OK elements average Future resolution time: 0.000031941498s -- verify these values against the "executor closed" message TIMED OUT elements count: 2; TIMED OUT elements average Future resolution time: 0.10140816s -- verify these values against the "executor closed" message FAILED elements count: 2; FAILED elements average Future resolution time: 0.0000096685s -- verify these values against the "executor closed" message ok <0.210s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_logs_and_no_metrics ... 2023-03-02T14:24:29.290Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'executor with logs & NO metrics' started: Futures (with timeouts of 100ms) / Fallible Items & NO Metrics 2023-03-02T14:24:29.299Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"17"' 2023-03-02T14:24:29.403Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & NO metrics' TIMED OUT 2023-03-02T14:24:29.403Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'executor with logs & NO metrics' yielded ERROR '"19"' 2023-03-02T14:24:29.506Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'executor with logs & NO metrics' TIMED OUT 2023-03-02T14:24:29.507Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'executor with logs & NO metrics' ended after running for 217.223561ms -- metrics were disabled ### Stats assertions for Stream pipeline executor named 'executor with logs & NO metrics' (Logs? true; Metrics? false) #### Creation time: 218.200953ms ago Execution Start: 131.137µs after creation Execution Finish: 217.354698ms 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.222s> test stream_executor::tests::spawn_timeout_futures_fallible_executor_with_metrics_and_no_logs ... ### Stats assertions for Stream pipeline executor named 'executor with metrics & NO logs' (Logs? false; Metrics? true) #### Creation time: 203.75412ms ago Execution Start: 258.666µs after creation Execution Finish: 202.8019ms after creation OK elements count: 2; OK elements average Future resolution time: 0.000160646s -- logs are DISABLED TIMED OUT elements count: 2; TIMED OUT elements average Future resolution time: 0.101051226s -- logs are DISABLED FAILED elements count: 2; FAILED elements average Future resolution time: 0.00001224s -- logs are DISABLED ok <0.206s> 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: 204.334181ms ago Execution Start: 277.799µs after creation Execution Finish: 203.755474ms 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.207s> test uni::channels::tests::atomic_mpmc_queue_doc_test ... receiving: Some("a") ok <0.002s> test uni::channels::tests::atomic_mpmc_queue_dropping ... Dropping the channel before the stream consumes the element: receiving: Some("a") Dropping the stream before the channel produces something, then another stream is created to consume the element: receiving: Some("a") ok <0.003s> test uni::channels::tests::atomic_mpmc_queue_parallel_streams ... receiving on stream #0: Some(0) receiving on stream #1: Some(1) receiving on stream #2: Some(2) receiving on stream #3: Some(3) receiving on stream #4: Some(4) receiving on stream #5: Some(5) receiving on stream #6: Some(6) receiving on stream #7: Some(7) receiving on stream #8: Some(8) receiving on stream #9: Some(9) receiving on stream #10: Some(10) receiving on stream #11: Some(11) receiving on stream #12: Some(12) receiving on stream #13: Some(13) receiving on stream #14: Some(14) receiving on stream #15: Some(15) receiving on stream #16: Some(16) receiving on stream #17: Some(17) receiving on stream #18: Some(18) receiving on stream #19: Some(19) receiving on stream #20: Some(20) receiving on stream #21: Some(21) receiving on stream #22: Some(22) receiving on stream #23: Some(23) receiving on stream #24: Some(24) receiving on stream #25: Some(25) receiving on stream #26: Some(26) receiving on stream #27: Some(27) receiving on stream #28: Some(28) receiving on stream #29: Some(29) receiving on stream #30: Some(30) receiving on stream #31: Some(31) receiving on stream #32: Some(32) receiving on stream #33: Some(33) receiving on stream #34: Some(34) receiving on stream #35: Some(35) receiving on stream #36: Some(36) receiving on stream #37: Some(37) receiving on stream #38: Some(38) receiving on stream #39: Some(39) receiving on stream #40: Some(40) receiving on stream #41: Some(41) receiving on stream #42: Some(42) receiving on stream #43: Some(43) receiving on stream #44: Some(44) receiving on stream #45: Some(45) receiving on stream #46: Some(46) receiving on stream #47: Some(47) receiving on stream #48: Some(48) receiving on stream #49: Some(49) receiving on stream #50: Some(50) receiving on stream #51: Some(51) receiving on stream #52: Some(52) receiving on stream #53: Some(53) receiving on stream #54: Some(54) receiving on stream #55: Some(55) receiving on stream #56: Some(56) receiving on stream #57: Some(57) receiving on stream #58: Some(58) receiving on stream #59: Some(59) receiving on stream #60: Some(60) receiving on stream #61: Some(61) receiving on stream #62: Some(62) receiving on stream #63: Some(63) receiving on stream #64: Some(64) receiving on stream #65: Some(65) receiving on stream #66: Some(66) receiving on stream #67: Some(67) receiving on stream #68: Some(68) receiving on stream #69: Some(69) receiving on stream #70: Some(70) receiving on stream #71: Some(71) receiving on stream #72: Some(72) receiving on stream #73: Some(73) receiving on stream #74: Some(74) receiving on stream #75: Some(75) receiving on stream #76: Some(76) receiving on stream #77: Some(77) receiving on stream #78: Some(78) receiving on stream #79: Some(79) receiving on stream #80: Some(80) receiving on stream #81: Some(81) receiving on stream #82: Some(82) receiving on stream #83: Some(83) receiving on stream #84: Some(84) receiving on stream #85: Some(85) receiving on stream #86: Some(86) receiving on stream #87: Some(87) receiving on stream #88: Some(88) receiving on stream #89: Some(89) receiving on stream #90: Some(90) receiving on stream #91: Some(91) receiving on stream #92: Some(92) receiving on stream #93: Some(93) receiving on stream #94: Some(94) receiving on stream #95: Some(95) receiving on stream #96: Some(96) receiving on stream #97: Some(97) receiving on stream #98: Some(98) receiving on stream #99: Some(99) ok <1.111s> 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.001s> 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.157s> test uni::channels::tests::performance_measurements ... TokioMPSC (same task / same thread): 3776799.94/s -- 10485760 items processed in 2.776360988s TokioMPSC (different task / same thread): 3804508.42/s -- 10485760 items processed in 2.756140571s TokioMPSC (different task / different thread): 3364865.54/s -- 10485760 items processed in 3.116249335s AtomicMPMCQueue (same task / same thread): 12905109.91/s -- 10485760 items processed in 812.527756ms AtomicMPMCQueue (different task / same thread): 12115587.38/s -- 10485760 items processed in 865.476817ms AtomicMPMCQueue (different task / different thread): 16688890.20/s -- 10485760 items processed in 628.307807ms OgreMPMCQueue (same task / same thread): 14677974.51/s -- 10485760 items processed in 714.387397ms OgreMPMCQueue (different task / same thread): 6081817.95/s -- 10485760 items processed in 1.724116061s OgreMPMCQueue (different task / different thread): 12820026.96/s -- 10485760 items processed in 817.920277ms ok <14.217s> test uni::channels::tests::tokio_mpsc_queue_doc_test ... receiving: Some("a") ok <0.000s> test uni::tests::async_elements ... 2023-03-02T14:24:46.459Z 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-02T14:24:47.462Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'async_elements() Event' ended after running for 1.002686452s -- stats: | ok: 4 events; avg 1.002233505s - 3.98928/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 0 events; avg 0ns - 0.00000/sec ok <1.010s> test uni::tests::demux ... 2023-03-02T14:24:47.480Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'SIX event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:24:47.480Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'TWO event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:24:47.481Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'FOUR event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:24:47.491Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'TWO event' ended after running for 10.294282ms -- stats: | ok: 4 events 2023-03-02T14:24:47.585Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'FOUR event' ended after running for 104.491612ms -- stats: | ok: 6 events ok <0.115s> test uni::tests::doc_tests ... 2023-03-02T14:24:47.603Z 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-02T14:24:47.611Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'doc_test() Event' ended after running for 7.683815ms -- stats: | ok: 2 events ok <0.020s> test uni::tests::error_handling ... 2023-03-02T14:24:47.628Z 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-02T14:24:47.629Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'fallible event' yielded ERROR '"BLOW CODE received: 79"' in 8.832µs ERROR CALLBACK WAS CALLED: '"BLOW CODE received: 79"' Payload 80 ACCURATELY PROCESSED! Payload 80 continued down the pipe 2023-03-02T14:24:47.631Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'fallible event' ended after running for 2.708757ms -- stats: | ok: 3 events; avg 35.817µs - 1107.51906/sec | time out: 0 events; avg 0ns - 0.00000/sec | failed: 1 events; avg 8.832µs - 369.17302/sec ok <0.010s> test uni::tests::performance_measurements ... metricfull_non_futures_non_fallible_uni: 5921883.51/s -- 8388608 items processed in 1.416543907s metricless_non_futures_non_fallible_uni: 9419076.21/s -- 8388608 items processed in 890.597742ms par_metricless_non_futures_non_fallible_uni: 1990048.72/s -- 8388608 items processed in 4.215277695s metricfull_futures_fallible_uni: 3061984.49/s -- 8388608 items processed in 2.739598459s metricless_futures_fallible_uni: 7148187.24/s -- 8388608 items processed in 1.173529417s timeoutable_metricfull_futures_fallible_uni: 1299541.28/s -- 6291456 items processed in 4.841289833s timeoutable_metricless_futures_fallible_uni: 1910966.12/s -- 6291456 items processed in 3.292290702s ok <18.576s> test uni::tests::simple_pipeline ... 2023-03-02T14:25:06.218Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'simple_pipeline() Event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:25:06.221Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'simple_pipeline() Event' ended after running for 2.431178ms -- stats: | ok: 2 events ok <0.007s> test uni::tests::stats ... 2023-03-02T14:25:06.226Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'non_future/non_fallible event' started: Non-Futures / Non-Fallible Items & Metrics 2023-03-02T14:25:06.228Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'non_future/non_fallible event' ended after running for 2.50613ms -- stats: | ok: 1 events 2023-03-02T14:25:06.233Z INFO [reactive_mutiny::stream_executor] ✓✓✓✓ Stream Executor 'future & fallible event' started: Futures (with timeouts of 150ms) / Fallible Items & Metrics 2023-03-02T14:25:06.385Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 50.521277ms 2023-03-02T14:25:06.537Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event' TIMED OUT after 151.779991ms 2023-03-02T14:25:06.690Z ERROR [reactive_mutiny::stream_executor] ✗✗✗✗ Executor 'future & fallible event' yielded ERROR '"failing the pipeline, as requested"' in 51.07849ms 2023-03-02T14:25:06.841Z ERROR [reactive_mutiny::stream_executor] 🕝🕝🕝🕝 Executor 'future & fallible event' TIMED OUT after 150.724893ms 2023-03-02T14:25:06.842Z WARN [reactive_mutiny::stream_executor] ✓✓✓✓ Stream 'future & fallible event' ended after running for 608.571094ms -- stats: | ok: 2 events; avg 101.352066ms - 3.28639/sec | time out: 2 events; avg 151.252449ms - 3.28639/sec | failed: 2 events; avg 50.799884ms - 3.28639/sec ok <0.623s> test result: ok. 90 passed; 0 failed; 8 ignored; 0 measured; 0 filtered out; finished in 501.32s 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