mirror of https://github.com/apache/cassandra
Upgrade JNA to 5.13.0
Patch by brandonwilliams; reviewed by mck for CASSANDRA-18050
This commit is contained in:
parent
452ad8ce70
commit
a8b1fb6ae6
|
|
@ -566,7 +566,7 @@
|
|||
<dependency>
|
||||
<groupId>net.java.dev.jna</groupId>
|
||||
<artifactId>jna</artifactId>
|
||||
<version>5.9.0</version>
|
||||
<version>5.13.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jacoco</groupId>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
4.2
|
||||
* Update JNA to 5.13.0 (CASSANDRA-18050)
|
||||
* Make virtual tables decide if they implicitly enable ALLOW FILTERING (CASSANDRA-18238)
|
||||
* Add row, tombstone, and sstable count to nodetool profileload (CASSANDRA-18022)
|
||||
* Coordinator level metrics for read response and mutation row and column counts (CASSANDRA-18155)
|
||||
|
|
|
|||
|
|
@ -76,6 +76,7 @@ public abstract class OfflineToolUtils
|
|||
"process reaper", // spawned by the jvm when executing external processes
|
||||
// and may still be active when we check
|
||||
"Attach Listener", // spawned in intellij IDEA
|
||||
"JNA Cleaner", // spawned by JNA
|
||||
};
|
||||
|
||||
static final String[] NON_DEFAULT_MEMTABLE_THREADS =
|
||||
|
|
|
|||
Loading…
Reference in New Issue