-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Error when using HMR #513
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
@theverything I'm not exactly sure how to reproduce this. Any chance you can provide a repo? |
I can't share the repo that the error is happening with, but I am trying to create an other one to reproduce the issue. |
I haven't been able to create a project to reproduce the error. I did try the beta again in my current project and the error still persists. Let me know if there is any way I can help. |
Is there any way you can share your project, even a stripped down one with me the demonstrates the problem? With that I could reduce the code into a test case. |
I tried that but there was no error. 😞 |
Maybe in stripping it down, you removed some key part that's causing react-redux to have the problem. |
Thats what I'm thinking. |
@theverything Anything I can do to help you with this? I'd love to resolve this one to help v5 make it to release. If you can't share your code with me, what about a screen-sharing session? Maybe from that I can see enough to make a repro without it. |
Without a repro, there isn't really anything to be done here. I'll reopen if there is something that can be reproduced, but HMR itself is known to have issues and may be the culprit here. |
@timdorr Recently discovered the same error — here’s the project. If you try to HMR |
Hi. guys. I ran into the same problem. Seems the reason is that connectAdvanced doesn't update link to subscription after updating. So I added my updating mechanism and it works for my project. |
@restrry We'll have to make some changes to get it to merge with PR #540 but this is very helpful. Thanks. |
Does anyone, @patrikholcak, @restrry, know how to simulate HMR in a test? |
You might look at how webpack does it. But it is pretty complex and I don't know if adding that to our infrastructure would be a good use of time. Better to spot test that on your own. If it's of any comfort, it's not an end-user feature anyways. So, the impact of fixing it does have a relatively limited audience. Not to say it's not important, just that you're not going to break everyone's app/site because of it :) |
agree, we needn't such complex check, since it was already tested in webpack. but |
If you have a ref to the component, you should be able to do I'm gonna spend some time on this in a couple weeks when I'm on extended vacation. I think the test is valuable because otherwise it might break again. The problem with having a bunch of really great tests is then things that aren't covered by them tend to be forgotten. |
I just added PR #567 which fixes this. Thanks @patrikholcak and @restrry. |
Sweet! Can you recap what the problem was, and how the fix works? |
Basically, |
On Monday I'll check out your branch and try it with my app |
I recently updated
[email protected]
. After doing so I noticed that after every code change HMR would cause a full page refresh do to an error.I looked through the stack trace and the error comes from
react-redux
.I reverted back to
[email protected]
and the error went away and HMR started working correctly again.The text was updated successfully, but these errors were encountered: