You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2017/02/02 20:29:40 UTC

svn commit: r1781467 - in /jmeter/trunk: src/core/org/apache/jmeter/gui/action/validation/TreeClonerForValidation.java xdocs/changes.xml

Author: pmouawad
Date: Thu Feb  2 20:29:40 2017
New Revision: 1781467

URL: http://svn.apache.org/viewvc?rev=1781467&view=rev
Log:
Bug 60684 - Thread Group: Validate ended prematurely by Scheduler with 0 or very short duration
Contributed by Andrew Burton 
Bugzilla Id: 60684

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/gui/action/validation/TreeClonerForValidation.java
    jmeter/trunk/xdocs/changes.xml

Modified: jmeter/trunk/src/core/org/apache/jmeter/gui/action/validation/TreeClonerForValidation.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/gui/action/validation/TreeClonerForValidation.java?rev=1781467&r1=1781466&r2=1781467&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/gui/action/validation/TreeClonerForValidation.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/gui/action/validation/TreeClonerForValidation.java Thu Feb  2 20:29:40 2017
@@ -85,6 +85,7 @@ public class TreeClonerForValidation ext
             if(clonedNode instanceof org.apache.jmeter.threads.ThreadGroup) {
                 ThreadGroup tg = (ThreadGroup)clonedNode;
                 tg.setNumThreads(VALIDATION_NUMBER_OF_THREADS);
+                tg.setScheduler(false);
                 tg.setProperty(ThreadGroup.DELAY, 0);
                 if(((AbstractThreadGroup)clonedNode).getSamplerController() instanceof LoopController) {
                     ((LoopController)((AbstractThreadGroup)clonedNode).getSamplerController()).setLoops(VALIDATION_ITERATIONS);

Modified: jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1781467&r1=1781466&r2=1781467&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
+++ jmeter/trunk/xdocs/changes.xml [utf-8] Thu Feb  2 20:29:40 2017
@@ -171,6 +171,7 @@ JMeter now requires Java 8. Ensure you u
     <li><bug>59995</bug>Allow user to change font size with 2 new menu items and use <code>jmeter.hidpi.scale.factor</code> for scaling fonts. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
     <li><bug>60654</bug>Validation Feature : Be able to ignore BackendListener. Contributed by Maxime Chassagneux (maxime.chassagneux at gmail.com).</li>
     <li><bug>60646</bug>Workbench : Save it by default</li>
+    <li><bug>60684</bug>Thread Group: Validate ended prematurely by Scheduler with 0 or very short duration. Contributed by Andrew Burton (andrewburtonatwh at gmail.com).</li>
 </ul>
 
 <ch_section>Non-functional changes</ch_section>
@@ -264,6 +265,7 @@ JMeter now requires Java 8. Ensure you u
 <li><a href="http://ubikloadpack.com">Ubik Load Pack</a></li>
 <li>Graham Russell (graham at ham1.co.uk)</li>
 <li>Sanduni Kanishka (https://github.com/SanduniKanishka)</li>
+<li>Andrew Burton (andrewburtonatwh at gmail.com)</li>
 </ul>
 <p>We also thank bug reporters who helped us improve JMeter. <br/>
 For this release we want to give special thanks to the following reporters for the clear reports and tests made after our fixes:</p>