mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Allow longer devtools JSON messages
This commit is contained in:
parent
43670c6eaa
commit
8759eb18ba
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ IAsyncAction DevtoolsClient::Loop() {
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
throw hresult_error(E_FAIL, L"Can't parse message header:" + c);
|
throw hresult_error(E_FAIL, L"Can't parse message header:" + c);
|
||||||
}
|
}
|
||||||
if (len >= 10000) {
|
if (len >= 100000) {
|
||||||
throw hresult_error(E_FAIL, L"Message length too long");
|
throw hresult_error(E_FAIL, L"Message length too long");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue