We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On topic subscribe, queue_size is simply ignored. On the Websocket server side however, it is read as "msg.queue_length". So adding this line
queue_length: this.queue_size
should fix it.
Around line 1150 in Roslib.js
if (this.subscribeId) { return; } this.ros.on(this.name, this._messageCallback); this.subscribeId = 'subscribe:' + this.name + ':' + (++this.ros.idCounter); this.ros.callOnConnection({ op: 'subscribe', id: this.subscribeId, type: this.messageType, topic: this.name, compression: this.compression, throttle_rate: this.throttle_rate, queue_length: this.queue_size /* Added */ }); };
The text was updated successfully, but these errors were encountered:
Merge pull request RobotWebTools#163 from SirVer/00_bower_config
5d6994f
Adds a bower configuration file.
No branches or pull requests
On topic subscribe, queue_size is simply ignored. On the Websocket server side however, it is read as "msg.queue_length". So adding this line
should fix it.
Around line 1150 in Roslib.js
The text was updated successfully, but these errors were encountered: