From f5a1d540408b711cde580dd01e1ecfef9f5eea2b Mon Sep 17 00:00:00 2001 From: Jonathan Strong Date: Thu, 29 Mar 2018 18:19:01 -0400 Subject: [PATCH] changes channel size to 20k --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b432dc7..73096c9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -50,7 +50,7 @@ pub const LOG_LEVEL : Severity = Severity::Debug; #[cfg(not(any(feature = "debug", feature = "trace")))] pub const LOG_LEVEL : Severity = Severity::Info; -const CHANNEL_SIZE: usize = 40_000; +const CHANNEL_SIZE: usize = 20_000; /// converts a chrono::DateTime to an integer timestamp (ns) ///