Skip to content

Commit

Permalink
[Improve] scala map bug fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfboys committed Oct 5, 2024
1 parent 5b9e809 commit 5a03657
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ private[flink] class FlinkStreamingInitializer(args: Array[String], apiType: Api
}
}

val envConfig = Configuration.fromMap(flinkConf + appFlinkConf)
val envConfig = Configuration.fromMap(flinkConf ++ appFlinkConf)
FlinkConfiguration(parameter, envConfig, null)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private[flink] class FlinkTableInitializer(args: Array[String], apiType: ApiType
}
}

val envConfig = Configuration.fromMap(flinkConf + appFlinkConf)
val envConfig = Configuration.fromMap(flinkConf ++ appFlinkConf)
val tableConfig = Configuration.fromMap(tableConf)

val parameterTool = ParameterTool
Expand Down

0 comments on commit 5a03657

Please sign in to comment.