Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/Socket/TcpSocket.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class TcpSocket extends AbstractSocket{
* max length for JSON data string
* -> throw OverflowException on exceed
*/
const JSON_DECODE_MAX_LENGTH = 65536 * 4;
const JSON_DECODE_MAX_LENGTH = 65536 * 6;

/**
* @see TcpSocket::DEFAULT_ACCEPT_TYPE
Expand Down Expand Up @@ -548,4 +548,4 @@ protected function getSocketStats() : array {
'logs' => array_reverse($this->logStore->getStore())
];
}
}
}