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
There is a latent bug here: these two RecordingState types from the JMC type hierarchy and from jdk.jfr.Recording use two different enums with differently named enum member values to represent states a Flight Recording may be in. Using a simple name-based valueOf() call is unsafe since the names do not match 1:1, nor is one set a subset of the other.
The text was updated successfully, but these errors were encountered:
cryostat-core/src/main/java/io/cryostat/core/serialization/SerializableRecordingDescriptor.java
Line 70 in e77984d
There is a latent bug here: these two
RecordingState
types from the JMC type hierarchy and fromjdk.jfr.Recording
use two different enums with differently named enum member values to represent states a Flight Recording may be in. Using a simple name-basedvalueOf()
call is unsafe since the names do not match1:1
, nor is one set a subset of the other.The text was updated successfully, but these errors were encountered: