From e759585109abb0728f08cb2afa4329b3dea33430 Mon Sep 17 00:00:00 2001 From: Dana Powers Date: Wed, 12 Feb 2025 12:21:01 -0800 Subject: [PATCH] Use -Djava.security.manager=allow for Java 23 sasl tests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d384043a7..3f64d6296 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ DIST_BASE_URL ?= https://archive.apache.org/dist/kafka/ # Required to support testing old kafka versions on newer java releases # The performance opts defaults are set in each kafka brokers bin/kafka_run_class.sh file # The values here are taken from the 2.4.0 release. -export KAFKA_JVM_PERFORMANCE_OPTS=-server -XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -Djava.awt.headless=true +export KAFKA_JVM_PERFORMANCE_OPTS=-server -XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -Djava.awt.headless=true -Djava.security.manager=allow setup: pip install -r requirements-dev.txt