Advertisement
Guest User

Untitled

a guest
Oct 8th, 2015
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. # javax.management.NotCompliantMBeanException: MBean class com.mongodb.ConnectionPoolStatistics does not implement
  2. # DynamicMBean, and neither follows the Standard MBean conventions (javax.management.NotCompliantMBeanException:
  3. # Class com.mongodb.ConnectionPoolStatistics is not a JMX compliant Standard MBean) nor the MXBean
  4. # conventions (javax.management.NotCompliantMBeanException: com.mongodb.ConnectionPoolStatistics: Class
  5. # com.mongodb.ConnectionPoolStatistics is not a JMX compliant MXBean)
  6.  
  7. # Then probably You have enabled optimizations and interface com.mongodb.ConnectionPoolStatisticsMBean is inlined into class
  8. # com.mongodb.ConnectionPoolStatistics, so to prevent errors simply keep this interface and implementing class with all fields
  9.  
  10. -keep interface com.mongodb.ConnectionPoolStatisticsMBean
  11. -keepclasseswithmembers class com.mongodb.ConnectionPoolStatistics { *; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement