You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cl...@apache.org on 2013/10/06 10:12:39 UTC

svn commit: r1529591 - /felix/trunk/ipojo/runtime/core-it/ipojo-core-configuration-admin-test/src/main/java/org/apache/felix/ipojo/runtime/core/components/ImmediateConfigurableFooProvider.java

Author: clement
Date: Sun Oct  6 08:12:38 2013
New Revision: 1529591

URL: http://svn.apache.org/r1529591
Log:
Print reconfigurations to hunt a timing issue on the CI.

Modified:
    felix/trunk/ipojo/runtime/core-it/ipojo-core-configuration-admin-test/src/main/java/org/apache/felix/ipojo/runtime/core/components/ImmediateConfigurableFooProvider.java

Modified: felix/trunk/ipojo/runtime/core-it/ipojo-core-configuration-admin-test/src/main/java/org/apache/felix/ipojo/runtime/core/components/ImmediateConfigurableFooProvider.java
URL: http://svn.apache.org/viewvc/felix/trunk/ipojo/runtime/core-it/ipojo-core-configuration-admin-test/src/main/java/org/apache/felix/ipojo/runtime/core/components/ImmediateConfigurableFooProvider.java?rev=1529591&r1=1529590&r2=1529591&view=diff
==============================================================================
--- felix/trunk/ipojo/runtime/core-it/ipojo-core-configuration-admin-test/src/main/java/org/apache/felix/ipojo/runtime/core/components/ImmediateConfigurableFooProvider.java (original)
+++ felix/trunk/ipojo/runtime/core-it/ipojo-core-configuration-admin-test/src/main/java/org/apache/felix/ipojo/runtime/core/components/ImmediateConfigurableFooProvider.java Sun Oct  6 08:12:38 2013
@@ -43,6 +43,7 @@ public class ImmediateConfigurableFooPro
 
     @Updated
     public void updated(Dictionary conf) {
+        System.out.println("Updating component with " + conf);
         this.configuration = conf;
         this.count++;
     }