Skip to content

Commit 3ba1021

Browse files
Services are inside /dynamic_graph_bridge namespace.
1 parent b1afbcb commit 3ba1021

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ros_python_interpreter_server.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ void RosPythonInterpreterServer::start_ros_service() {
3030
std::bind(&RosPythonInterpreterServer::runCommandCallback, this,
3131
std::placeholders::_1, std::placeholders::_2);
3232
run_python_command_srv_ = ros_node_->create_service<RunPythonCommandSrvType>(
33-
"run_python_command", runCommandCb);
33+
"/dynamic_graph_bridge/run_python_command", runCommandCb);
3434

3535
run_python_file_callback_t runPythonFileCb =
3636
std::bind(&RosPythonInterpreterServer::runPythonFileCallback, this,
3737
std::placeholders::_1, std::placeholders::_2);
3838
run_python_file_srv_ = ros_node_->create_service<RunPythonFileSrvType>(
39-
"run_python_file", runPythonFileCb);
39+
"/dynamic_graph_bridge/run_python_file", runPythonFileCb);
4040
}
4141

4242
void RosPythonInterpreterServer::runCommandCallback(

0 commit comments

Comments
 (0)