Bug 59152 - Thread Group: Change "Action to be taken after a Sample Error" value from "Continue" to "Start Next thread loop"

#resolve #161
https://github.com/apache/jmeter/pull/161
Bugzilla Id: 59152

git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1734313 13f79535-47bb-0310-9956-ffa450edef68

Former-commit-id: 58987ee7fa
This commit is contained in:
Philippe Mouawad 2016-03-09 21:09:24 +00:00
parent e86c0ee9cf
commit 92d4c41b6b
4 changed files with 5 additions and 3 deletions

View File

@ -35,7 +35,7 @@
</CookieManager>
<hashTree/>
<ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Thread Group" enabled="true">
<stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
<stringProp name="ThreadGroup.on_sample_error">startnextloop</stringProp>
<elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" testname="Loop Controller" enabled="true">
<boolProp name="LoopController.continue_forever">false</boolProp>
<stringProp name="LoopController.loops">1</stringProp>

View File

@ -35,7 +35,7 @@
</CookieManager>
<hashTree/>
<ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Thread Group" enabled="true">
<stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
<stringProp name="ThreadGroup.on_sample_error">startnextloop</stringProp>
<elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" testname="Loop Controller" enabled="true">
<boolProp name="LoopController.continue_forever">false</boolProp>
<stringProp name="LoopController.loops">1</stringProp>

View File

@ -105,7 +105,7 @@ public abstract class AbstractThreadGroupGui extends AbstractJMeterGuiComponent
}
private void initGui() {
continueBox.setSelected(true);
startNextLoop.setSelected(true);
}
private JPanel createOnErrorPanel() {

View File

@ -115,6 +115,7 @@ Summary
</ul>
</li>
<li><code>httpsampler.await_termination_timeout</code> has been replaced by <code>httpsampler.parallel_download_thread_keepalive_inseconds</code> which is now the keep alive time for the parallel download threads (in seconds).</li>
<li>For Thread Group Test Element, the property "Action to be taken after a Sample Error" value has been switched from "Continue" to "Start Next thread loop". See <bugzilla>59152</bugzilla></li>
</ul>
<!-- =================== Improvements =================== -->
@ -258,6 +259,7 @@ Summary
<li><bug>59095</bug>Remove UserParameterXMLParser that was deprecated 8 years ago. Contributed by Benoit Wiart (benoit dot wiart at gmail.com)</li>
<li><bug>58426</bug>Use DPI scaling of interface for high resolution devices (HiDPI support for Windows/Linux) - <i>BETA</i> see hidpi properties in bin/jmeter.properties</li>
<li><bug>59105</bug>TableEditor : Add ability to paste rows from clipboard and delete multiple selection. Contributed by Vincent Herilier (vherilier at gmail.com)</li>
<li><bug>59152</bug>Thread Group: Change "Action to be taken after a Sample Error" value from "Continue" to "Start Next thread loop". Contributed by Antonio Gomes Rodrigues (ra0077 at gmail.com)</li>
</ul>
<ch_section>Non-functional changes</ch_section>
<ul>