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
{{ message }}
This repository has been archived by the owner on Sep 9, 2021. It is now read-only.
The loader is calling URL.createObjectURL to create URL representing the worker javascript bundle file. The object is never released, and garbage collector can't remove it from memory.
At some point it is not possible to create another object and error is thrown: net::ERR_OUT_OF_MEMORY which means the buffer of the network interface is full.
I am getting this on all browsers.
Proposed solution
According to documentation, we can call revokeObjectURL() to release an object URL.
The problem
The loader is calling
URL.createObjectURL
to create URL representing the worker javascript bundle file. The object is never released, and garbage collector can't remove it from memory.At some point it is not possible to create another object and error is thrown:
net::ERR_OUT_OF_MEMORY
which means the buffer of the network interface is full.I am getting this on all browsers.
Proposed solution
According to documentation, we can call
revokeObjectURL()
to release an object URL.The text was updated successfully, but these errors were encountered: