bugfix: fix threading races and concurrency in moonrakerComm/RepeatedTimer#211
Open
gmmcosta15 wants to merge 2 commits intodevfrom
Open
bugfix: fix threading races and concurrency in moonrakerComm/RepeatedTimer#211gmmcosta15 wants to merge 2 commits intodevfrom
gmmcosta15 wants to merge 2 commits intodevfrom
Conversation
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
connected,connecting,_reconnect_count,callback_tablefrom class-level to__init__to prevent shared state across instances._state_lock(RLock) and_request_lockguarding all reads/writes to those vars.params={}→params=Noneinsend_request.super()inOneShotTokenError._retry_timerwithNonecheck beforestopTimer/startTimer; stop existing timer intry_connectionbefore creating a new one (prevents orphaned threads).sendEvent→postEventfor safe cross-thread event delivery.json.loadsintry/except; use.get()on all external response dicts.join(timeout=self.timeout+1)on_wstto avoid indefinite block on shutdown.RepeatedTimer: invertedstopEventsemantics (set=stop,clear=running).Motivation
The WebSocket layer had multiple threading races and incorrect cross-thread event dispatch causing UI freezes and crashes on Pi hardware.
RepeatedTimerhad inverted stop-event logic causing timers to never stop correctly. These are the root-cause fixes for the most severe class of bugs in #200.