aboutsummaryrefslogtreecommitdiff
path: root/src/config_watcher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config_watcher.rs')
-rw-r--r--src/config_watcher.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config_watcher.rs b/src/config_watcher.rs
index f80ac2c..25423cf 100644
--- a/src/config_watcher.rs
+++ b/src/config_watcher.rs
@@ -14,13 +14,13 @@ use tracing::{error, info, instrument};
#[cfg(feature = "notify")]
use notify::{EventKind, RecursiveMode, Watcher};
-#[derive(Debug, PartialEq)]
+#[derive(Debug, PartialEq, Eq)]
pub enum ConfigChange {
General(Box<Config>), // Trigger a full restart
ServiceChange(ServiceChange),
}
-#[derive(Debug, PartialEq)]
+#[derive(Debug, PartialEq, Eq)]
pub enum ServiceChange {
ClientAdd(ClientServiceConfig),
ClientDelete(String),