Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions datadog-tracer-flare/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ pub enum FlareError {
ListeningError(String),
/// Parsing of config failed.
ParsingError(String),
/// Send the flare was asking without being prepared.
RemoteConfigError(String),
/// Sending the flare failed.
SendError(String),
/// Creating the zipped flare failed.
Expand All @@ -23,9 +21,6 @@ impl std::fmt::Display for FlareError {
match self {
FlareError::ListeningError(msg) => write!(f, "Listening failed with: {msg}"),
FlareError::ParsingError(msg) => write!(f, "Parsing failed with: {msg}"),
FlareError::RemoteConfigError(msg) => {
write!(f, "RemoteConfig file processed in a wrong order: {msg}")
}
FlareError::SendError(msg) => write!(f, "Sending the flare failed with: {msg}"),
FlareError::ZipError(msg) => write!(f, "Creating the zip failed with: {msg}"),
}
Expand Down
Loading
Loading