We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f6aa36 commit fa98c27Copy full SHA for fa98c27
1 file changed
src/lib/ActionClientInterface.js
@@ -41,12 +41,12 @@ class ActionClientInterface extends EventEmitter {
41
42
const nh = options.nh;
43
44
- const goalOptions = Object.assign({ queueSize: 10, latching: true }, options.goal);
+ const goalOptions = Object.assign({ queueSize: 10, latching: false }, options.goal);
45
this._goalPub = nh.advertise(this._actionServer + '/goal',
46
this._actionType + 'Goal',
47
goalOptions);
48
49
- const cancelOptions = Object.assign({ queueSize: 10, latching: true }, options.cancel);
+ const cancelOptions = Object.assign({ queueSize: 10, latching: false }, options.cancel);
50
this._cancelPub = nh.advertise(this._actionServer + '/cancel',
51
'actionlib_msgs/GoalID',
52
cancelOptions);
0 commit comments