-
Notifications
You must be signed in to change notification settings - Fork 59
Panic when using <Table> inside <Suspense> under load #355
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Removing the However my real world application still panics with Suspense under load. It seems there are other thaw components that yield the same panic under load, for example Click to expand stacktrace
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug:
The application panics with the error message from
reative_graph
:the `sandboxed-arenas` feature is active, but no Arena is active
When accessing the below code I get a panic. I managed to generate a minimal reproduction. Switching to html
<table>
instead of thaw's<Table>
does not yield the panic.Steps to reproduce the behavior:
app.rs
to use the following components:$ hey -n 5000 http://127.0.0.1:3000 [...] Status code distribution: [200] 4995 responses Error distribution: [5] Get "http://127.0.0.1:3000": EOF
Here for example 5 requests out of 5000 failed.
the `sandboxed-arenas` feature is active, but no Arena is active
Expected behavior
All 5000 requests get a 200 status code and no error in the server logs
Additional notes
<table>
. i.e. the below command works as expected:on_cleanup
function ofTableHeaderCell
component.Click to expand stacktrace
The text was updated successfully, but these errors were encountered: