Skip to content

Commit 54cccea

Browse files
authored
Merge pull request #395 from superfly/fix-backups
Add log for member rename notification
2 parents 7cac664 + a9142a5 commit 54cccea

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crates/corro-agent/src/agent/handlers.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,7 @@ pub async fn handle_notifications(
397397
counter!("corro.swim.notification", "type" => "memberdown").increment(1);
398398
}
399399
OwnedNotification::Rename(a, b) => {
400+
info!("Member Rename {a:?} to {b:?}");
400401
let mut lock = agent.members().write();
401402
lock.remove_member(&a);
402403
lock.add_member(&b);

0 commit comments

Comments
 (0)