summaryrefslogtreecommitdiffstats
path: root/crates/core/tedge/src/cli/certificate/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/core/tedge/src/cli/certificate/error.rs')
-rw-r--r--crates/core/tedge/src/cli/certificate/error.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/crates/core/tedge/src/cli/certificate/error.rs b/crates/core/tedge/src/cli/certificate/error.rs
index 8fffc417..8193350d 100644
--- a/crates/core/tedge/src/cli/certificate/error.rs
+++ b/crates/core/tedge/src/cli/certificate/error.rs
@@ -2,7 +2,6 @@ use reqwest::StatusCode;
use std::error::Error;
use tedge_config::FilePath;
use tedge_config::{ConfigSettingError, TEdgeConfigError};
-use tedge_users::UserSwitchError;
use tedge_utils::paths::PathsError;
#[derive(thiserror::Error, Debug)]
@@ -72,9 +71,6 @@ pub enum CertError {
#[error(transparent)]
UrlParseError(#[from] url::ParseError),
- #[error(transparent)]
- UserSwitchError(#[from] UserSwitchError),
-
#[error("HTTP Connection Problem: {msg} \nHint: {hint}")]
CertificateValidationFailure { hint: String, msg: String },