Refactor scylla config and default ttls

This commit is contained in:
Dominik Werder
2024-02-20 09:44:38 +01:00
parent ce60445af3
commit 7beb5a9ced
17 changed files with 307 additions and 315 deletions

View File

@@ -45,7 +45,6 @@ async fn run_batcher<T>(rx: Receiver<T>, batch_tx: Sender<Vec<T>>, batch_limit:
}
}
Err(e) => {
error!("------------------------------------------ error in batcher, no more input {e}");
break;
}
},
@@ -58,5 +57,5 @@ async fn run_batcher<T>(rx: Receiver<T>, batch_tx: Sender<Vec<T>>, batch_limit:
}
}
}
warn!("-------- batcher is done --------------");
debug!("-------- batcher is done --------------");
}