Skip to content

Commit 0ddc98d

Browse files
committed
2
1 parent 96d4f82 commit 0ddc98d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OpenFlow/src/WebSocketClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export class WebSocketClient {
200200
}
201201
this._sendQueue = this._sendQueue.filter(function (msg: SocketMessage): boolean { return msg.id !== id; });
202202
});
203-
if (this._receiveQueue.length > 1 || this._sendQueue.length > 1) {
203+
if (this._receiveQueue.length > 25 || this._sendQueue.length > 25) {
204204
if (this.user !== null && this.user !== undefined) {
205205
this._logger.debug("[" + this.user.username + "] WebSocketclient::ProcessQueue receiveQueue: " + this._receiveQueue.length + " sendQueue: " + this._sendQueue.length);
206206
}

0 commit comments

Comments
 (0)