mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-20 19:48:07 +01:00
Change the "oversized message" threshold from 64kB to 1MB.
This commit is contained in:
committed by
Jon Chambers
parent
e266e1ce40
commit
8523bb1ad8
@@ -102,7 +102,7 @@ public class MessageController {
|
||||
private static final String CONTENT_SIZE_DISTRIBUTION_NAME = name(MessageController.class, "messageContentSize");
|
||||
private static final String OUTGOING_MESSAGE_LIST_SIZE_BYTES_DISTRIBUTION_NAME = name(MessageController.class, "outgoingMessageListSizeBytes");
|
||||
|
||||
private static final int MAX_MESSAGE_SIZE = 64 * 1024;
|
||||
private static final int MAX_MESSAGE_SIZE = 1024 * 1024;
|
||||
|
||||
public MessageController(RateLimiters rateLimiters,
|
||||
MessageSender messageSender,
|
||||
|
||||
Reference in New Issue
Block a user