https://issues.apache.org/bugzilla/show_bug.cgi?id=56552
Bug ID: 56552
Summary: Add option to disable interpolation in JSR223
Product: JMeter
Version: 2.11
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P2
Component: Main
Assignee: [email protected]
Reporter: [email protected]
Using a Groovy inline script with a cache key causes a problem. Consider the
following example:
def sessionId = vars.get("sessionId")
def formatted = "${sessionId}_cool";
If the sessionId is regenerated in a preprocessor, only the first interpolation
from JMeter works due to caching. Groovy cannot not interpolate the GString
because it has already been done by JMeter. I'd like to be able to disable
interpolation on cacheable items.
--
You are receiving this mail because:
You are the assignee for the bug.