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 2020/07/25 20:24:29 UTC

[jmeter] branch master updated: Fix for bug fix 62238 (#606)

This is an automated email from the ASF dual-hosted git repository.

pmouawad pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new c0289a2  Fix for bug fix 62238 (#606)
c0289a2 is described below

commit c0289a2a76082036341e3f8f8602627b4a7fad60
Author: Till Neunast <ti...@users.noreply.github.com>
AuthorDate: Sun Jul 26 08:24:18 2020 +1200

    Fix for bug fix 62238 (#606)
---
 src/core/src/main/java/org/apache/jmeter/threads/JMeterThread.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/core/src/main/java/org/apache/jmeter/threads/JMeterThread.java b/src/core/src/main/java/org/apache/jmeter/threads/JMeterThread.java
index 0276b5e..b643f8f 100644
--- a/src/core/src/main/java/org/apache/jmeter/threads/JMeterThread.java
+++ b/src/core/src/main/java/org/apache/jmeter/threads/JMeterThread.java
@@ -595,7 +595,9 @@ public class JMeterThread implements Runnable, Interruptible {
             if (result.isStopTestNow() || (!result.isSuccessful() && onErrorStopTestNow)) {
                 stopTestNow();
             }
-            threadContext.setTestLogicalAction(result.getTestLogicalAction());
+            if (result.getTestLogicalAction() != TestLogicalAction.CONTINUE) {
+                threadContext.setTestLogicalAction(result.getTestLogicalAction());
+            }
         } else {
             compiler.done(pack); // Finish up
         }