Move MAX_MESSAGE_SIZE
assertion
This commit is contained in:
@@ -188,6 +188,10 @@ export default class WebSocketResource extends EventTarget {
|
|||||||
id,
|
id,
|
||||||
},
|
},
|
||||||
}).finish();
|
}).finish();
|
||||||
|
strictAssert(
|
||||||
|
bytes.length <= MAX_MESSAGE_SIZE,
|
||||||
|
'WebSocket request byte size exceeded'
|
||||||
|
);
|
||||||
|
|
||||||
strictAssert(!this.shuttingDown, 'Cannot send request, shutting down');
|
strictAssert(!this.shuttingDown, 'Cannot send request, shutting down');
|
||||||
this.addActive(id);
|
this.addActive(id);
|
||||||
@@ -210,10 +214,6 @@ export default class WebSocketResource extends EventTarget {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
strictAssert(
|
|
||||||
bytes.length <= MAX_MESSAGE_SIZE,
|
|
||||||
'WebSocket request byte size exceeded'
|
|
||||||
);
|
|
||||||
this.socket.sendBytes(Buffer.from(bytes));
|
this.socket.sendBytes(Buffer.from(bytes));
|
||||||
|
|
||||||
return promise;
|
return promise;
|
||||||
|
Reference in New Issue
Block a user