I am trying to use the feed variable in the parameter name for a multipart upload. Are they any suggestions you have that will allow me to do the following? It seems to be taking a string and not an EvaluatebleString.
val step = chain
.feed(csv(“test.csv”))
.exec(
http(“Upload Images”)
.post("/")
.header(“X-PID”, “${pid}”)
.upload("${pid}_taco.tga", “taco.tga”)
)
Thanks,
Gabe Hicks