mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 21:31:53 +01:00
Fix CME in RuleEngineImpl (#3754)
Signed-off-by: Jan N. Klug <github@klug.nrw>
This commit is contained in:
parent
caf13da88a
commit
da73b5770c
@ -178,7 +178,7 @@ public class RuleEngineImpl implements RuleManager, RegistryChangeListener<Modul
|
||||
* The context map of a {@link Rule} is cleaned when the execution is completed. The relation is
|
||||
* {@link Rule}'s UID to Rule context map.
|
||||
*/
|
||||
private final Map<String, Map<String, Object>> contextMap = new HashMap<>();
|
||||
private final Map<String, Map<String, Object>> contextMap = new ConcurrentHashMap<>();
|
||||
|
||||
/**
|
||||
* This field holds reference to {@link ModuleTypeRegistry}. The {@link RuleEngineImpl} needs it to auto-map
|
||||
|
Loading…
Reference in New Issue
Block a user