Closed adamlm closed 2 months ago
This PR fixes an issue with the mux node where switching to the __none topic did not cause the node to unsubscribe from its previous topic.
mux
__none
The node now calls the ToolBaseNode::make_subscribe_unsubscribe_decisions() function after assigning input_topic_ to NONE_TOPIC.
ToolBaseNode::make_subscribe_unsubscribe_decisions()
input_topic_
NONE_TOPIC
Closes #110
I added a new unit test.
@mergifyio backport jazzy
backport jazzy
Description
This PR fixes an issue with the
mux
node where switching to the__none
topic did not cause the node to unsubscribe from its previous topic.The node now calls the
ToolBaseNode::make_subscribe_unsubscribe_decisions()
function after assigninginput_topic_
toNONE_TOPIC
.Closes #110
How was this tested?
I added a new unit test.