You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-commits@ws.apache.org by da...@apache.org on 2007/09/02 18:58:35 UTC

svn commit: r572032 - /webservices/muse/trunk/modules/muse-wsrf-impl/src/org/apache/muse/ws/resource/sg/impl/SimpleServiceGroup.java

Author: danj
Date: Sun Sep  2 09:58:33 2007
New Revision: 572032

URL: http://svn.apache.org/viewvc?rev=572032&view=rev
Log:
Fix for MUSE-255 - make sure SG entry is actually deleted from the system after removing its artifacts from the SG implementation

Modified:
    webservices/muse/trunk/modules/muse-wsrf-impl/src/org/apache/muse/ws/resource/sg/impl/SimpleServiceGroup.java

Modified: webservices/muse/trunk/modules/muse-wsrf-impl/src/org/apache/muse/ws/resource/sg/impl/SimpleServiceGroup.java
URL: http://svn.apache.org/viewvc/webservices/muse/trunk/modules/muse-wsrf-impl/src/org/apache/muse/ws/resource/sg/impl/SimpleServiceGroup.java?rev=572032&r1=572031&r2=572032&view=diff
==============================================================================
--- webservices/muse/trunk/modules/muse-wsrf-impl/src/org/apache/muse/ws/resource/sg/impl/SimpleServiceGroup.java (original)
+++ webservices/muse/trunk/modules/muse-wsrf-impl/src/org/apache/muse/ws/resource/sg/impl/SimpleServiceGroup.java Sun Sep  2 09:58:33 2007
@@ -425,6 +425,7 @@
     }
     
     public void resourceRemoved(EndpointReference epr)
+        throws SoapFault
     {
         //
         // if the SG is destroyed, it means we're being told about 
@@ -445,7 +446,10 @@
             // the member was destroyed
             //
             if (entry != null)
+            {
                 removeEntry(entry);
+                entry.shutdown();
+            }
         }
     }
     



---------------------------------------------------------------------
To unsubscribe, e-mail: muse-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-commits-help@ws.apache.org