Skip to content

Commit

Permalink
GH-728: fix wrong name for the actor message
Browse files Browse the repository at this point in the history
  • Loading branch information
utkarshg6 committed Oct 24, 2023
1 parent b55577a commit 79b6b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/src/node_configurator/configurator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl Handler<BindMessage> for Configurator {
self.node_to_ui_sub_opt = Some(msg.peer_actors.ui_gateway.node_to_ui_message_sub.clone());
// self.new_password_subs = Some(vec![msg.peer_actors.neighborhood.new_password_sub]); // GH-728
self.update_password_subs = Some(hashmap!(
"configurator".to_string() => msg.peer_actors.neighborhood.configuration_change_msg_sub.clone()
"neighborhood".to_string() => msg.peer_actors.neighborhood.configuration_change_msg_sub.clone(),
));
self.update_min_hops_sub_opt =
Some(msg.peer_actors.neighborhood.configuration_change_msg_sub);
Expand Down

0 comments on commit 79b6b9a

Please sign in to comment.