mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-4.0' into cassandra-4.1
This commit is contained in:
commit
1df5dd671e
|
|
@ -1,6 +1,7 @@
|
|||
4.1-beta2
|
||||
* Allow pre-V5 global limit on bytes in flight to revert to zero asynchronously in RateLimitingTest (CASSANDRA-17927)
|
||||
Merged from 4.0:
|
||||
* Fix ASM bytecode version inconsistency (CASSANDRA-17873)
|
||||
* Remove empty cq4 files in log directory to not fail the startup of BinLog (CASSANDRA-17933)
|
||||
* Fix multiple BufferPool bugs (CASSANDRA-16681)
|
||||
* Fix StorageService.getNativeaddress handling of IPv6 addresses (CASSANDRA-17945)
|
||||
|
|
|
|||
|
|
@ -160,7 +160,7 @@ public final class UDFByteCodeVerifier
|
|||
|
||||
ExecuteImplVisitor(Set<String> errors)
|
||||
{
|
||||
super(Opcodes.ASM5);
|
||||
super(Opcodes.ASM7);
|
||||
this.errors = errors;
|
||||
}
|
||||
|
||||
|
|
@ -210,7 +210,7 @@ public final class UDFByteCodeVerifier
|
|||
|
||||
ConstructorVisitor(Set<String> errors)
|
||||
{
|
||||
super(Opcodes.ASM5);
|
||||
super(Opcodes.ASM7);
|
||||
this.errors = errors;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue