Closed rodolfo3 closed 6 years ago
Is it because it calls Raven.setDataCallback
each store creation?
The it will create and add a new function to every store creation (with happens a lot on server-side-rendering)
Looks like the same issue as this: https://github.com/captbaritone/raven-for-redux/issues/50
This library is not compatible with Node Raven, since Node Raven has a different API. I would suggest you conditionally omit the raven-for-redux
middleware when server rendering.
Setting it up in a running server-side-rendering app causes the memory grows constantly:
(it goes down when the server restarts the node process due memory restrictions)
The only difference is that I setup Raven globally:
I do this because I setup differently on client-side.
My store middlewares are:
In my packages.json, I have these versions:
This behavior happens on nodejs
8.9.4
and10.3.0
.