Skip to content

Commit

Permalink
chore: remove unused variant
Browse files Browse the repository at this point in the history
  • Loading branch information
Devdutt Shenoi committed Nov 16, 2023
1 parent 3a2374c commit 228a40b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions uplink/src/collector/tcpjson.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use flume::{Receiver, RecvError, SendError};
use flume::{Receiver, RecvError};
use futures_util::SinkExt;
use log::{debug, error, info};
use thiserror::Error;
Expand All @@ -20,8 +20,6 @@ pub enum Error {
Io(#[from] io::Error),
#[error("Receiver error {0}")]
Recv(#[from] RecvError),
#[error("Sender error {0}")]
Send(#[from] SendError<ActionResponse>),
#[error("Stream done")]
StreamDone,
#[error("Lines codec error {0}")]
Expand Down

0 comments on commit 228a40b

Please sign in to comment.