Bug:553 - RPC providers are not cleaned up on bundle stop, causing bundle restart... 82/5782/1
authorKamal Rameshan <kramesha@cisco.com>
Wed, 26 Mar 2014 21:12:19 +0000 (14:12 -0700)
committerKamal Rameshan <kramesha@cisco.com>
Wed, 26 Mar 2014 21:12:19 +0000 (14:12 -0700)
Change-Id: Id6b8ba01194d71d2eb7ea97ca70088dec8b29d6e
Signed-off-by: Kamal Rameshan <kramesha@cisco.com>
opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/sal/binding/impl/RpcProviderRegistryImpl.java

index e0c7d260b5309c2242045821a1d827ae8931c6f1..542dfa7e7bca61a0fc4ff33e31239c3c3872e73b 100644 (file)
@@ -247,7 +247,8 @@ public class RpcProviderRegistryImpl implements //
 
         public RpcProxyRegistration(Class<T> type, T service, RpcProviderRegistryImpl registry) {
             super(service);
-            serviceType = type;
+            this.serviceType = type;
+            this.registry =  registry;
         }
 
         @Override