WebsocketResources: Increase maximum outgoing message size

This commit is contained in:
Scott Nonnenberg 2021-09-10 11:43:53 -07:00 committed by GitHub
parent 0e0982147c
commit 9d4edb5893
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ import { SignalService as Proto } from '../protobuf';
const THIRTY_SECONDS = 30 * durations.SECOND;
const MAX_MESSAGE_SIZE = 64 * 1024;
const MAX_MESSAGE_SIZE = 256 * 1024;
export class IncomingWebSocketRequest {
private readonly id: Long | number;