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 <tilln@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
}
|