Author: pauls
Date: Mon Dec  3 17:53:34 2018
New Revision: 1848078

URL: http://svn.apache.org/viewvc?rev=1848078&view=rev
Log:
FELIX-5995: stop the whiteboardManager before the httpServiceFactory to avouid 
race conditions

Modified:
    
felix/trunk/http/base/src/main/java/org/apache/felix/http/base/internal/HttpServiceController.java

Modified: 
felix/trunk/http/base/src/main/java/org/apache/felix/http/base/internal/HttpServiceController.java
URL: 
http://svn.apache.org/viewvc/felix/trunk/http/base/src/main/java/org/apache/felix/http/base/internal/HttpServiceController.java?rev=1848078&r1=1848077&r2=1848078&view=diff
==============================================================================
--- 
felix/trunk/http/base/src/main/java/org/apache/felix/http/base/internal/HttpServiceController.java
 (original)
+++ 
felix/trunk/http/base/src/main/java/org/apache/felix/http/base/internal/HttpServiceController.java
 Mon Dec  3 17:53:34 2018
@@ -131,8 +131,8 @@ public final class HttpServiceController
     {
         this.dispatcher.setWhiteboardManager(null);
 
-        this.httpServiceFactory.stop();
         this.whiteboardManager.stop();
+        this.httpServiceFactory.stop();
 
         this.registry.shutdown();
         this.httpSessionListener = null;


Reply via email to