We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22898db commit e6f9767Copy full SHA for e6f9767
src/main/scala/com/qwshen/etl/pipeline/builder/JsonPipelineBuilder.scala
@@ -131,6 +131,7 @@ class JsonPipelineBuilder extends PipelineBuilder with Loggable {
131
def withKV = (k: String, v: String) => {
132
val data = this.evaluate(this.resolve(ConfigurationManager.quote(v))(newConfig))(session)
133
vars.put(k, data)
134
+ //update the config
135
newConfig = ConfigurationManager.mergeVariables(newConfig, Map(k -> data))
136
}
137
value.foreach(v => withKV(n, v))
0 commit comments