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
Describe the bug
On an application start I see the following
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.esotericsoftware.kryo.serializers.CachedFields (file:/Users/mailo/.m2/repository/com/esotericsoftware/kryo/5.3.0/kryo-5.3.0.jar) to field java.util.concurrent.atomic.AtomicLong.value
WARNING: Please consider reporting this to the maintainers of com.esotericsoftware.kryo.serializers.CachedFields
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
Environment:
OS: [e.g. Windows]
JDK Version: [e.g. 11]
Kryo Version: [e.g. 5.3.0]
The text was updated successfully, but these errors were encountered:
@foal: Kryo is missing safe serializers for a couple JDK types. AtomicLong is one of them. I'm planning to add the missing serializers to Kryo 5, but we unfortunately cannot register them by default, because it would break backwards compatibility. You can either ignore the warning for now, or register a custom serializer like this:
Describe the bug
On an application start I see the following
Environment:
The text was updated successfully, but these errors were encountered: