I add an attribute (solrCoreSuffix) to my flowfile using UpdateAttribute processor with value "test". Then, in my PutSolrContentStream processor, i set Solr Location property to : "http://localhost:8983/solr/mycore-${solrCoreSuffix}". I expect the Solr processor to try to get to "http://localhost:8983/solr/mycore-test" but, as stated in the logs, it tries to access "http://localhost:8983/solr/mycore-".
This field has "support expression language : true", I can see my attribute with correct value when inspecting flowfile in the queue, I can use this attribute on other processor like PutFile for example, field "Collection" has same unexpected behavior.
I don't see what I'm doing wrong here, did I miss something ?