Skip to content

Commit

Permalink
Initialize the routing running state
Browse files Browse the repository at this point in the history
The routing manager running state appears uninitialised, which can (and has) resulting in routingmanagerd starting up in a suspend state.
  • Loading branch information
kheaactua committed Mar 19, 2024
1 parent 02c199d commit 955bc2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implementation/routing/include/routing_manager_base.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ class routing_manager_base : public routing_manager,
std::string env_;

std::mutex routing_state_mutex_;
routing_state_e routing_state_;
routing_state_e routing_state_{routing_state_e::RS_RUNNING};

private:
services_t services_;
Expand Down

0 comments on commit 955bc2d

Please sign in to comment.