Closed urig closed 2 years ago
1 files 1 suites 50s :stopwatch: 191 tests 187 :heavy_check_mark: 4 :zzz: 0 :x:
Results for commit ef078177.
@qguyk needs to look over this, it's above my head. Regardless, there's a conflict at the moment which should be resolved @urig
This PR makes
InProcessParamStore
thread-safe.A single mutually exclusive lock (
threading.Lock
) has been added around all critical sections. I.e. whenever a public method reads or changes state data (i.e.self._params
,self_tags
etc.) it acquires the lock and releases it afterwards.