This is an automated email from the ASF dual-hosted git repository.
Amar3tto pushed a commit to branch fix-tensorflow-212
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/fix-tensorflow-212 by this
push:
new 7a669e4cb7b Add-opens
7a669e4cb7b is described below
commit 7a669e4cb7b298e86978629a267990b8de3f9fa5
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Thu Aug 27 15:42:58 2026 +0400
Add-opens
---
runners/portability/test_flink_uber_jar.sh | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/runners/portability/test_flink_uber_jar.sh
b/runners/portability/test_flink_uber_jar.sh
index d073de4b91e..83b96d377c6 100755
--- a/runners/portability/test_flink_uber_jar.sh
+++ b/runners/portability/test_flink_uber_jar.sh
@@ -98,7 +98,17 @@ s.close()
FLINK_PORT=$(python -c "$SOCKET_SCRIPT")
echo "Starting Flink mini cluster listening on port $FLINK_PORT"
-java -Dorg.slf4j.simpleLogger.defaultLogLevel=warn -jar
"$FLINK_MINI_CLUSTER_JAR" --rest-port "$FLINK_PORT" --rest-bind-address
localhost &
+java \
+ --add-opens=java.base/sun.nio.ch=ALL-UNNAMED \
+ --add-opens=java.base/java.nio=ALL-UNNAMED \
+ --add-opens=java.base/java.util=ALL-UNNAMED \
+ --add-opens=java.base/java.lang.invoke=ALL-UNNAMED \
+ --add-opens=java.base/java.lang=ALL-UNNAMED \
+ -Djava.security.manager=allow \
+ -Dorg.slf4j.simpleLogger.defaultLogLevel=warn \
+ -jar "$FLINK_MINI_CLUSTER_JAR" \
+ --rest-port "$FLINK_PORT" \
+ --rest-bind-address localhost &
PIPELINE_PY="
import apache_beam as beam