We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96d4f82 commit 0ddc98dCopy full SHA for 0ddc98d
1 file changed
OpenFlow/src/WebSocketClient.ts
@@ -200,7 +200,7 @@ export class WebSocketClient {
200
}
201
this._sendQueue = this._sendQueue.filter(function (msg: SocketMessage): boolean { return msg.id !== id; });
202
});
203
- if (this._receiveQueue.length > 1 || this._sendQueue.length > 1) {
+ if (this._receiveQueue.length > 25 || this._sendQueue.length > 25) {
204
if (this.user !== null && this.user !== undefined) {
205
this._logger.debug("[" + this.user.username + "] WebSocketclient::ProcessQueue receiveQueue: " + this._receiveQueue.length + " sendQueue: " + this._sendQueue.length);
206
0 commit comments