I have a single web worker which makes about 30 AJAX requests and after each request it sends a message to the UI using postMessage to log the progress. For example:
postMessage({type: "progress", name: "customers", message: "Success" }).
After about 10-20 requests (not always the same number), the following error appears:
Uncaught SyntaxError: Not enough arguments.
If I remove the postMessage calls, everything works fine, and if I add additional postMessage calls, the web worker gives the error after even fewer requests.
It seems to also depend on the type of data, the web worker dies sooner if the postMessage calls contain JSON objects rather than strings.
Does anyone know why this happens ?