Remove unnecessary field

This commit is contained in:
Dominik Werder
2024-09-30 11:09:36 +02:00
parent 8c426dd22e
commit d785abfb82
4 changed files with 40 additions and 19 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "daqingest"
version = "0.2.4-aa.1"
version = "0.2.4-aa.2"
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
edition = "2021"
+1 -4
View File
@@ -407,10 +407,7 @@ impl Daemon {
ch_cfg: ChannelConfig,
restx: netfetch::ca::conn::CmdResTx,
) -> Result<(), Error> {
// debug!("handle_channel_add {ch:?}");
self.connset_ctrl
.add_channel(self.ingest_opts.backend().into(), ch_cfg, restx)
.await?;
self.connset_ctrl.add_channel(ch_cfg, restx).await?;
Ok(())
}