I am trying to migrate scdf version from 1.7.3 to 2.1.2
While deploying a stream with the older version, I was able to provide named input destination during stream deployment (using Dashboard UI) as follows:-
app..spring.cloud.bindings.input.destination=input1,input2.
After upgrading to SCDF 2.1.2, I am not able to do the same. SCDF throws an error which states "Invalid Character ',' found in the deployment properties.
I tried to pass these properties as array elements as follows:
app..spring.cloud.bindings.input.destination[0]=input1 app..spring.cloud.bindings.input.destination[1]=input2
This does not work either.
End Goal is to be able to bind two different output destinations that belong to two different apps to a common input destination of the app .