Skip to content

Commit

Permalink
Fix service list path in bridge
Browse files Browse the repository at this point in the history
  • Loading branch information
pd0wm committed Nov 5, 2019
1 parent d35515a commit 3196cf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion messaging/bridge.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ static std::vector<std::string> get_services() {

assert(base_dir_ptr);
std::string base_dir = base_dir_ptr;
std::string service_list_path = base_dir + "/selfdrive/service_list.yaml";
std::string service_list_path = base_dir + "/cereal/service_list.yaml";
YAML::Node service_list = YAML::LoadFile(service_list_path);

std::vector<std::string> name_list;
Expand Down

0 comments on commit 3196cf6

Please sign in to comment.