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
When removing variables from trend, an exceptional situation may arise.
The operation clears the slice structs.SimulationStatus.TrendSignals. If the program is simultaneously iterating over this slice (fetching time series), the program may go down due to an out of bounds exception.
This was previously solved with a mutex which made things horribly sluggish at times.
The text was updated successfully, but these errors were encountered:
When removing variables from trend, an exceptional situation may arise.
The operation clears the slice
structs.SimulationStatus.TrendSignals
. If the program is simultaneously iterating over this slice (fetching time series), the program may go down due to an out of bounds exception.This was previously solved with a mutex which made things horribly sluggish at times.
The text was updated successfully, but these errors were encountered: