svn commit: r1063374 - in /websites: production/openwebbeans/content/index.html staging/openwebbeans/trunk/content/index.html

2020-07-23 Thread buildbot
Author: buildbot
Date: Thu Jul 23 10:35:08 2020
New Revision: 1063374

Log:
Dynamic update by buildbot for openwebbeans

Modified:
websites/production/openwebbeans/content/index.html
websites/staging/openwebbeans/trunk/content/index.html

Modified: websites/production/openwebbeans/content/index.html
==
(empty)

Modified: websites/staging/openwebbeans/trunk/content/index.html
==
(empty)




[openwebbeans] branch master updated: [OWB-1341] Event bus: IN_PROGRESS phase should not be sent to transactionService

2020-07-23 Thread rmannibucau
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 42cf3d7  [OWB-1341] Event bus: IN_PROGRESS phase should not be sent to 
transactionService
 new 756fdc5  Merge pull request #29 from cocorossello/master
42cf3d7 is described below

commit 42cf3d72d40089439c7fd1d69e5d9b1f8e5b6efe
Author: vrossello 
AuthorDate: Thu Jul 23 09:24:18 2020 +0200

[OWB-1341] Event bus: IN_PROGRESS phase should not be sent to 
transactionService
---
 .../src/main/java/org/apache/webbeans/event/NotificationManager.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/webbeans-impl/src/main/java/org/apache/webbeans/event/NotificationManager.java
 
b/webbeans-impl/src/main/java/org/apache/webbeans/event/NotificationManager.java
index 8c7eea0..7c7ae7c 100644
--- 
a/webbeans-impl/src/main/java/org/apache/webbeans/event/NotificationManager.java
+++ 
b/webbeans-impl/src/main/java/org/apache/webbeans/event/NotificationManager.java
@@ -714,7 +714,7 @@ public final class NotificationManager
 {
 TransactionPhase phase = observer.getTransactionPhase();
 
-if (phase == null || phase != TransactionPhase.IN_PROGRESS)
+if (phase == null || phase == TransactionPhase.IN_PROGRESS)
 {
 invokeObserverMethod(context, observer);
 }