You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It does not check the existence of the item in the map but uses properties["xxx"] directly. When the key does not exist in the map, the code creates a default one with default values (e.g. 0), then the default initial values defined in sol_manager.hpp are overwritten.
It has a side effect that the accumulateInterval becomes 0, then the timer will be triggered without valid value, and costs all CPU usage.
The text was updated successfully, but these errors were encountered:
The commit 2908695 introduces the issue that the default SOL configs become invalid.
The function
updateSOLParameter()
has below piece of code:It does not check the existence of the item in the map but uses
properties["xxx"]
directly. When the key does not exist in the map, the code creates a default one with default values (e.g. 0), then the default initial values defined insol_manager.hpp
are overwritten.It has a side effect that the
accumulateInterval
becomes 0, then the timer will be triggered without valid value, and costs all CPU usage.The text was updated successfully, but these errors were encountered: