You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2019/08/28 18:22:35 UTC

[jmeter] branch master updated: notify all waiting threads when result is computed

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

fschumacher 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 a6824ae  notify all waiting threads when result is computed
a6824ae is described below

commit a6824ae79e09dddb6cd211fa6aa3a722ad43aeeb
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Wed Aug 28 20:22:05 2019 +0200

    notify all waiting threads when result is computed
---
 src/core/src/main/java/org/apache/jmeter/report/processor/Job.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/src/main/java/org/apache/jmeter/report/processor/Job.java b/src/core/src/main/java/org/apache/jmeter/report/processor/Job.java
index 46d5bbe..0e20c5d 100644
--- a/src/core/src/main/java/org/apache/jmeter/report/processor/Job.java
+++ b/src/core/src/main/java/org/apache/jmeter/report/processor/Job.java
@@ -40,7 +40,7 @@ abstract class Job<T> implements Runnable {
         result = exec();
         synchronized (lock) {
             resultReady = true;
-            lock.notify();
+            lock.notifyAll();
         }
     }