We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7cac664 + a9142a5 commit 54ccceaCopy full SHA for 54cccea
crates/corro-agent/src/agent/handlers.rs
@@ -397,6 +397,7 @@ pub async fn handle_notifications(
397
counter!("corro.swim.notification", "type" => "memberdown").increment(1);
398
}
399
OwnedNotification::Rename(a, b) => {
400
+ info!("Member Rename {a:?} to {b:?}");
401
let mut lock = agent.members().write();
402
lock.remove_member(&a);
403
lock.add_member(&b);
0 commit comments