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
We are running AppD in our pod along with our application. Our application use lettuce library for redis connectivity, for some reason, When we upgraded our lettuce library version to 6.1.3 in the application then we start getting error: Could not initialize JfrConnectionCreatedEvent #1767.
So we found following link and tried to resolved: #1767 Based on above link there are two solutions:
Use the following statement System.getProperty("io.lettuce.core.jfr",false); to disable the jfr.
The second is to provide --add-reads=jdk.jfr=ALL-UNNAMED on jvm argument.
Could you guys tell me which one is better approach and what is the downside of disabling the JFR in lettuce?
The text was updated successfully, but these errors were encountered:
We are running AppD in our pod along with our application. Our application use lettuce library for redis connectivity, for some reason, When we upgraded our lettuce library version to 6.1.3 in the application then we start getting error: Could not initialize JfrConnectionCreatedEvent #1767.
So we found following link and tried to resolved:
#1767
Based on above link there are two solutions:
System.getProperty("io.lettuce.core.jfr",false);
to disable the jfr.--add-reads=jdk.jfr=ALL-UNNAMED
on jvm argument.Could you guys tell me which one is better approach and what is the downside of disabling the JFR in lettuce?
The text was updated successfully, but these errors were encountered: