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

aleks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new f06d9f670 ScheduleStopListener threading fix
f06d9f670 is described below

commit f06d9f670c48978c697351c14b80b4e1e36ea78d
Author: Arnold Galovics <[email protected]>
AuthorDate: Tue Aug 16 17:59:12 2022 +0200

    ScheduleStopListener threading fix
---
 .../fineract/infrastructure/jobs/service/SchedulerStopListener.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/SchedulerStopListener.java
 
b/fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/SchedulerStopListener.java
index 522d96b5e..a1dbad2a3 100644
--- 
a/fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/SchedulerStopListener.java
+++ 
b/fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/SchedulerStopListener.java
@@ -67,7 +67,7 @@ public class SchedulerStopListener implements JobListener {
                     
SchedulerStopListener.this.jobRegisterService.stopScheduler(schedulerName);
                 }
             });
-            newThread.run();
+            newThread.start();
         }
     }
 

Reply via email to