Find active channels and deliver values
This commit is contained in:
+1
-1
@@ -10,7 +10,7 @@ path = "src/dq.rs"
|
||||
[dependencies]
|
||||
#serde = { version = "1.0", features = ["derive"] }
|
||||
#serde_json = "1.0"
|
||||
tokio = { version = "=1.16.1", features = ["rt-multi-thread", "io-util", "net", "time", "sync", "fs"] }
|
||||
tokio = { version = "1.18.1", features = ["rt-multi-thread", "io-util", "net", "time", "sync", "fs"] }
|
||||
futures-util = "0.3.14"
|
||||
clap = { version = "3.0.6", features = ["derive", "cargo"] }
|
||||
chrono = "0.4.19"
|
||||
|
||||
@@ -79,6 +79,7 @@ pub fn main() -> Result<(), Error> {
|
||||
channel: Channel {
|
||||
backend: String::new(),
|
||||
name: config.channel_name.clone(),
|
||||
series: None,
|
||||
},
|
||||
keyspace: ce.ks as u8,
|
||||
time_bin_size: ce.bs,
|
||||
|
||||
@@ -337,6 +337,7 @@ pub async fn convert(convert_params: ConvertParams) -> Result<(), Error> {
|
||||
let channel = Channel {
|
||||
backend: String::new(),
|
||||
name: convert_params.channel_name.into(),
|
||||
series: None,
|
||||
};
|
||||
let mut data_writer = DataWriter::new(
|
||||
convert_params.output_dir,
|
||||
|
||||
Reference in New Issue
Block a user