This is an automated email from the ASF dual-hosted git repository.
fanrui pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new aff916ee277 [hotfix] Avoid duplicate call on checkNotNull (#26429)
aff916ee277 is described below
commit aff916ee277a248ecada81af6b4ccdd67c715f4b
Author: Jiaan Geng <[email protected]>
AuthorDate: Fri Apr 11 21:49:49 2025 +0800
[hotfix] Avoid duplicate call on checkNotNull (#26429)
---
.../src/main/java/org/apache/flink/client/cli/CliFrontend.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git
a/flink-clients/src/main/java/org/apache/flink/client/cli/CliFrontend.java
b/flink-clients/src/main/java/org/apache/flink/client/cli/CliFrontend.java
index 87b4b45ba8c..7c88daa3ada 100644
--- a/flink-clients/src/main/java/org/apache/flink/client/cli/CliFrontend.java
+++ b/flink-clients/src/main/java/org/apache/flink/client/cli/CliFrontend.java
@@ -311,8 +311,7 @@ public class CliFrontend {
getEffectiveConfiguration(activeCustomCommandLine,
commandLine);
final ExecutionConfigAccessor executionParameters =
- ExecutionConfigAccessor.fromProgramOptions(
- checkNotNull(programOptions), checkNotNull(jobJars));
+ ExecutionConfigAccessor.fromProgramOptions(programOptions,
jobJars);
executionParameters.applyToConfiguration(effectiveConfiguration);