Skip to content

Commit

Permalink
bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfboys committed Aug 26, 2023
1 parent b2c346b commit 3840b0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ trait FlinkClientTrait extends Logger {
if (submitRequest.properties.nonEmpty) {
if (submitRequest.properties.containsKey(ExecutionOptions.RUNTIME_MODE.key())) {
programArgs += s"--${ExecutionOptions.RUNTIME_MODE.key()}"
programArgs += submitRequest.properties.get(ExecutionOptions.RUNTIME_MODE.key())
programArgs += submitRequest.properties.get(ExecutionOptions.RUNTIME_MODE.key()).toString
}
}

Expand Down

0 comments on commit 3840b0d

Please sign in to comment.