feat(credential): enforce signed credential distribution across mixed admin/shared topology (#1972)

This commit is contained in:
KKRainbow
2026-03-10 08:37:33 +08:00
committed by GitHub
parent ef44027f57
commit 694b8d349d
15 changed files with 894 additions and 186 deletions
+2 -2
View File
@@ -245,7 +245,7 @@ impl UdpHoePunchConnectorData {
tracing::info!(?tunnel, "hole punching get tunnel success");
if let Err(e) = self.peer_mgr.add_client_tunnel(tunnel, false).await {
tracing::warn!(?e, "add client tunnel failed");
tracing::warn!("add client tunnel failed, err: {}", e);
op(true);
false
} else {
@@ -258,7 +258,7 @@ impl UdpHoePunchConnectorData {
false
}
Err(e) => {
tracing::info!(?e, "hole punching failed");
tracing::info!("hole punching failed, err: {}", e);
op(true);
false
}