Update deps, log, error return

This commit is contained in:
Dominik Werder
2025-06-03 12:29:07 +02:00
parent 1ddf18276f
commit 9d20359126
16 changed files with 203 additions and 140 deletions

View File

@@ -37,7 +37,7 @@ slidebuf = "0.0.1"
dashmap = "6.0.1"
hashbrown = "0.15.2"
smallvec = "1.13.2"
autoerr = "0.0.3"
autoerr = "0.0"
log = { path = "../log" }
series = { path = "../../daqbuf-series", package = "daqbuf-series" }
serieswriter = { path = "../serieswriter" }

View File

@@ -92,7 +92,7 @@ const POLL_READ_TIMEOUT: Duration = Duration::from_millis(1000 * 10);
const DO_RATE_CHECK: bool = false;
const CHANNEL_STATUS_PONG_QUIET: Duration = Duration::from_millis(1000 * 60 * 60);
const METRICS_EMIT_IVL: Duration = Duration::from_millis(1000 * 1);
const USE_BIN_WRITER: bool = true;
const USE_BIN_WRITER: bool = false;
macro_rules! trace3 { ($($arg:expr),*) => ( if false { trace!($($arg),*); } ); }