Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,9 @@
# Required for dynamic classpath (ClassLoaderUtils) on JDK 9+. Ignored on JDK 8.
--add-opens java.base/jdk.internal.loader=ALL-UNNAMED
--add-opens jdk.zipfs/jdk.nio.zipfs=ALL-UNNAMED

# Required for FlinkClient#submit's ExitSecurityManager (used to intercept System.exit()
# calls made by the Flink CLI during in-process job submission) on JDK 18+, where
# System.setSecurityManager() throws UnsupportedOperationException unless explicitly
# allowed (JEP 411). Ignored on JDK 17 and earlier.
-Djava.security.manager=allow
Loading