WebsocketResources: Increase maximum outgoing message size
This commit is contained in:
parent
0e0982147c
commit
9d4edb5893
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ import { SignalService as Proto } from '../protobuf';
|
||||||
|
|
||||||
const THIRTY_SECONDS = 30 * durations.SECOND;
|
const THIRTY_SECONDS = 30 * durations.SECOND;
|
||||||
|
|
||||||
const MAX_MESSAGE_SIZE = 64 * 1024;
|
const MAX_MESSAGE_SIZE = 256 * 1024;
|
||||||
|
|
||||||
export class IncomingWebSocketRequest {
|
export class IncomingWebSocketRequest {
|
||||||
private readonly id: Long | number;
|
private readonly id: Long | number;
|
||||||
|
|
Loading…
Reference in a new issue