You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently (as of 2.17), maximum document nesting depth for both StreamReadConstraints and StreamWriteConstraints is 1,000. While this seems to work, causing no false positives (i.e. we haven't received complaints about too strict limit, it is possibly too high for some use case -- specifically for some Fuzzing systems manage to StackOverflowError before reaching limit that would avoid it.
It looks like default of 500 would solve this issue, without affecting legit use cases (probably anything above 100 would, but let's be conservative here).
The text was updated successfully, but these errors were encountered:
Currently (as of 2.17), maximum document nesting depth for both
StreamReadConstraints
andStreamWriteConstraints
is 1,000. While this seems to work, causing no false positives (i.e. we haven't received complaints about too strict limit, it is possibly too high for some use case -- specifically for some Fuzzing systems manage to StackOverflowError before reaching limit that would avoid it.It looks like default of 500 would solve this issue, without affecting legit use cases (probably anything above 100 would, but let's be conservative here).
The text was updated successfully, but these errors were encountered: