This commit is contained in:
Alexey
2026-03-21 15:45:29 +03:00
parent 7a8f946029
commit d7bbb376c9
154 changed files with 6194 additions and 3775 deletions
+4 -1
View File
@@ -83,7 +83,10 @@ impl MePool {
pub async fn update_secret(self: &Arc<Self>, new_secret: Vec<u8>) -> bool {
if new_secret.len() < 32 {
warn!(len = new_secret.len(), "proxy-secret update ignored (too short)");
warn!(
len = new_secret.len(),
"proxy-secret update ignored (too short)"
);
return false;
}
let mut guard = self.proxy_secret.write().await;