Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Meteor auto refresh not working

Tags:

meteor

My meteor local app simply stopped watching client files ("Client modified, refreshing"). It will still watch server files and trigger a "Server modified, restarting" and complete it, but ignores client changes.

Closing it (ctrl+c) and restarting it (meteor) doesn't fix it. Rebooting the PC doesn't fix it.

If I force a server refresh (changing server files by random), the next client file change will usually trigger a "client modified, refreshing" but will not complete it (hung forever).

I searched a lot and found thousand of people asking how to STOP files from being watched, but not questions about this problem =\

like image 619
Fiote Avatar asked Nov 08 '22 04:11

Fiote


1 Answers

Searching even more, I came across people suggesting 'downgrading' meteor to solve weird bugs (not exactly the one I'm facing). Still, 'downgrading' it to 1.4.1.3 (instead of the current 1.4.2.3) seemed to fix the problem, at least for now.

D:\somefolder> meteor --release 1.4.1.3
=> Using Meteor 1.4.1.3 as requested (overriding Meteor 1.4.2.3)

I don't think this really can be considered an answer, but at least the problem was 'solved'.

like image 111
Fiote Avatar answered Nov 15 '22 06:11

Fiote