https://bz.apache.org/bugzilla/show_bug.cgi?id=64916

--- Comment #3 from Felix Schumacher <[email protected]> ---
The JSONPathAssertion you are looking for is the one, that is distributed with
JMeter. As written previously, look for jar files in your Docker images, that
contain the JSONPathAssertion class and make sure, they are from the same
version of JMeter.

In shell syntax, you could use something like the following:

find . -name "*.jar" -type f | while read i; do
  jar tf $i | grep JSONPathAssertion && md5sum $i;
done

The script snippet assumes, that you run it from within the JMeter directory.

The expected result is, that you get only one hit for a jar and that the md5sum
for the jar is the same for all of your images/nodes.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to