Still problems with messages in DWC
-
I had this for a while now, too, probably since 1.19, but I'm not entirely sure.
-
I've also now encountered this but only since upgrading to the latest 1.20b8
-
https://github.com/chrishamm/DuetWebControl/issues/50
I created an issue for this a while ago but this got closed. I still have this problem. When doing some thing I don’t even get the latest messages but just old ones making it impossible to proceed without a restart.
I tried Chrome, Safari and IE but all the same… -
Thinking about it, my problems only started when I upgraded from 1.19 to 1.20beta7.
After playing around with b7 I did a downgrade to 1.19 (by mistake) and then went to 1.19.2.
Around this time I also upgraded DWC from 1.19 to 1.19.3, unfortunately I can't remember when exactly…Only then I started seeing this problem.
I still have it with RRF1.19.2 & DWC1.19.3. -
But on my PanelDue all is fine, except that long messages get truncated…
Think Chris is right that it may be a firmware issue, maybe David can have a look at this? -
There is a known issue with DWC messages getting replicated, triggered by connecting 2 browers to the Duet and then disconnecting one of them.
-
I just tested this with wireshark attached, and it also happens with a single browser.
I see the following responses to the [c]/rr_reply[/c] request (in order):File /gcodes/lithophane-light-mount.gcode selected for printing\n
File /gcodes/lithophane-light-mount.gcode selected for printing\n
\nFile /gcodes/lithophane-light-mount.gcode selected for printing\n \n \n
File /gcodes/lithophane-light-mount.gcode selected for printing\n
\n
\n
Leadscrew adjustments made: 0.008 -0.025, points used 2, deviation before 0.013 after 0.000\n
\nFile /gcodes/lithophane-light-mount.gcode selected for printing\n \n \n Leadscrew adjustments made: 0.008 -0.025, points used 2, deviation before 0.013 after 0.000\n \n
File /gcodes/lithophane-light-mount.gcode selected for printing\n
\n
\n
Leadscrew adjustments made: 0.008 -0.025, points used 2, deviation before 0.013 after 0.000\n
\nFile /gcodes/lithophane-light-mount.gcode selected for printing\n \n \n Leadscrew adjustments made: 0.008 -0.025, points used 2, deviation before 0.013 after 0.000\n \n ``` So this seems to be a buffer getting concatenated with old data and not getting emptied correctly.
-
Thinking about it some more, I actually have a Cura plugin to upload & send G-Codes.
This might be "a second browser"… I will update the plugin to send a [c]/rr_disconnect[/c] to properly close the session.
I will report back once I tested this. -
Ok that with two browsers is new to me…
I have reachability checks and an auto power off with NodeRed implemented after 30 minutes idle.
This check run with HTTP so this might be the second browser... -
Hmmmmmm seems I got this fixed for me…
Inserted a /rr_disconnect GET request just after I get the status and now it seems working without old log messages. I just get in return what should be returned...Thanks for the hint! There are so many aspects and stuff to look at and to have in mind. Thank god David knows all this
-
Well, that is interesting. It seems to be fixed for me, too. I added a call to '/rr_disconnect' in the script that pulls the printer status and it looks like the problem is solved. Thanks!