You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it is important to have the clients generate from the model. If we let the user do that, we might get problems with remapping later on (if the names in the code don't fit the names in the model).
Simple solution: we could just add the client in the init/constructor function to make sure the name fits to the model:
cpp:
{{{actionlib::SimpleActionClient<learning_actionlib::FibonacciAction> ac("fibonacci", true);}}}
python
{{{self.client = actionlib.SimpleActionClient('fibonacci', actionlib_tutorials.msg.FibonacciAction)}}}
While code for action and serviceservices is generated, the templates are missing implementations of clients.
Both for c++ and python templates.
The text was updated successfully, but these errors were encountered: