You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by gn...@apache.org on 2009/06/02 01:49:21 UTC

svn commit: r780887 - /geronimo/sandbox/blueprint/blueprint-core/src/main/java/org/apache/geronimo/blueprint/container/BlueprintEventDispatcher.java

Author: gnodet
Date: Mon Jun  1 23:49:21 2009
New Revision: 780887

URL: http://svn.apache.org/viewvc?rev=780887&view=rev
Log:
Make sure the replay flag is set on the event during the replay phase

Modified:
    geronimo/sandbox/blueprint/blueprint-core/src/main/java/org/apache/geronimo/blueprint/container/BlueprintEventDispatcher.java

Modified: geronimo/sandbox/blueprint/blueprint-core/src/main/java/org/apache/geronimo/blueprint/container/BlueprintEventDispatcher.java
URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-core/src/main/java/org/apache/geronimo/blueprint/container/BlueprintEventDispatcher.java?rev=780887&r1=780886&r2=780887&view=diff
==============================================================================
--- geronimo/sandbox/blueprint/blueprint-core/src/main/java/org/apache/geronimo/blueprint/container/BlueprintEventDispatcher.java (original)
+++ geronimo/sandbox/blueprint/blueprint-core/src/main/java/org/apache/geronimo/blueprint/container/BlueprintEventDispatcher.java Mon Jun  1 23:49:21 2009
@@ -79,7 +79,7 @@
     protected void sendInitialEvents(BlueprintListener listener) {
         if (states != null) {
             for (Map.Entry<Bundle, BlueprintEvent> entry : states.entrySet()) {
-                listener.blueprintEvent(entry.getValue());
+                listener.blueprintEvent(new BlueprintEvent(entry.getValue(), true));
             }
         }
     }