Browse Source

changes channel size to 20k

master
Jonathan Strong 6 years ago
parent
commit
f5a1d54040
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/lib.rs

+ 1
- 1
src/lib.rs View File

@@ -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)
///


Loading…
Cancel
Save