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
wasm.memory.buffer is an ArrayBuffer with non-zero byteLength.
The worts part is that after this happens for the first time the object starts failing on any interaction with the library (cause of memory access attempts) and it is hard to get the object out of this state. DurableObject reset by an unhandled exception or this.ctx.abort() doesn't help. Other DurableObjects of the same type are working fine (until overloaded).
The text was updated successfully, but these errors were encountered:
Details
Reproduction code with steps in README.
We're using automerge library. When we make a large number of allocations a:
Error is thrown in this code produced by wasm-bindgen:
wasm.memory.buffer
is anArrayBuffer
with non-zero byteLength.The worts part is that after this happens for the first time the object starts failing on any interaction with the library (cause of memory access attempts) and it is hard to get the object out of this state. DurableObject reset by an unhandled exception or
this.ctx.abort()
doesn't help. Other DurableObjects of the same type are working fine (until overloaded).The text was updated successfully, but these errors were encountered: