https://issues.apache.org/bugzilla/show_bug.cgi?id=55056
Bug ID: 55056
Summary: wasted work in Data.append()
Product: JMeter
Version: 2.9
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: Main
Assignee: [email protected]
Reporter: [email protected]
Created attachment 30386
--> https://issues.apache.org/bugzilla/attachment.cgi?id=30386&action=edit
patch
The problem appears in version 2.9 and in revision 1489451. I
attached a one-line patch that fixes it.
In method "Data.append", the loop over "dHeaders" should break
immediately after "valid" is set to "false". All the iterations after
"valid" is set to "false" do not perform any useful work, at best they
just set "valid" again to "false".
Method "include" in class "ClassFilter" has a similar loop (over
"pkgs"), and this loop breaks immediately after "inc" is set to
"true", just like in the proposed patch. Other methods (e.g.,
"Copy.keepOnlyAncestors", "JMeterThread.getSampleListeners",
"HTTPSamplerBase.getSendParameterValuesAsPostBody",
"LogFilter.incFile") also have similar loops with similar breaks, just
like in the proposed patch.
--
You are receiving this mail because:
You are the assignee for the bug.