@@ -43,7 +43,7 @@ class ActionClientInterface extends EventEmitter {
4343
4444 const goalOptions = Object . assign ( { queueSize : 10 , latching : false } , options . goal ) ;
4545 this . _goalPub = nh . advertise ( this . _actionServer + '/goal' ,
46- this . _actionType + 'Goal ' ,
46+ this . _actionType + 'ActionGoal ' ,
4747 goalOptions ) ;
4848
4949 const cancelOptions = Object . assign ( { queueSize : 10 , latching : false } , options . cancel ) ;
@@ -59,13 +59,13 @@ class ActionClientInterface extends EventEmitter {
5959
6060 const feedbackOptions = Object . assign ( { queueSize : 1 } , options . feedback ) ;
6161 this . _feedbackSub = nh . subscribe ( this . _actionServer + '/feedback' ,
62- this . _actionType + 'Feedback ' ,
62+ this . _actionType + 'ActionFeedback ' ,
6363 ( msg ) => { this . _handleFeedback ( msg ) ; } ,
6464 feedbackOptions ) ;
6565
6666 const resultOptions = Object . assign ( { queueSize : 1 } , options . result ) ;
6767 this . _resultSub = nh . subscribe ( this . _actionServer + '/result' ,
68- this . _actionType + 'Result ' ,
68+ this . _actionType + 'ActionResult ' ,
6969 ( msg ) => { this . _handleResult ( msg ) ; } ,
7070 resultOptions ) ;
7171
0 commit comments