zalmoxisus / remote-redux-devtools

Redux DevTools remotely.

Home Page:http://zalmoxisus.github.io/monitoring/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

store.dispatch would affect the same store

WanLinLin opened this issue · comments

Hi,

I am using remote-redux-devtools in isomorphic React/Redux app. What I found is that when dispatching actions during server side rendering, concurrent requests would access the same store.

The problem is because the store.dispatch in src/devtools.js wraps the global store's dispatch, and the global store will be reassigned by other requests.

This problem occurs even if the realtime option is true.