Remove rsocket payload size assertion

Summary:
Don't fatal when trying to send a message to flipper that is too large.
Instead just continue to throw an exception, so the plugin will still be aware of the failure.

Reviewed By: cpojer, danielbuechele

Differential Revision: D17180334

fbshipit-source-id: 49c341a7cee579158be3878639083c6d19b3eaa3
This commit is contained in:
John Knox
2019-09-04 04:02:49 -07:00
committed by Facebook Github Bot
parent 4d0ab98c57
commit 6eb1531aae

View File

@@ -356,7 +356,6 @@ rsocket::Payload toRSocketPayload(dynamic data) {
"Error: Skipping sending message larger than max rsocket payload: ") +
json.substr(0, 100) + "...";
log(logMessage);
DCHECK_LE(payloadLength, maxPayloadSize);
throw std::length_error(logMessage);
}