commit | 9711265182f163ba381e7800e3748ac28710f9ef | [log] [tgz] |
---|---|---|
author | Brett Cannon <brett@python.org> | Tue Nov 01 15:51:05 2022 -0700 |
committer | GitHub <noreply@github.com> | Tue Nov 01 15:51:05 2022 -0700 |
tree | 8c71b961eff103e00b93bbaeacf108baa86bbf25 | |
parent | c0859743d9ad3bbd4c021200f4162cfeadc0c17a [diff] |
gh-98925: Lower marshal recursion depth for WASI (GH-98938) For wasmtime 2.0, the stack depth cost is 6% higher. This causes the default max `marshal` recursion depth to blow the stack. As the default marshal depth is 2000 and Windows is set to 1000, split the difference and choose 1500 for WASI to be safe.