diff options
-rw-r--r-- | src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/resource_allocation_manager_impl.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/resource_allocation_manager_impl.cc b/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/resource_allocation_manager_impl.cc index 7b0ea5f41a..f8e64a1570 100644 --- a/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/resource_allocation_manager_impl.cc +++ b/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/resource_allocation_manager_impl.cc @@ -145,6 +145,7 @@ void ResourceAllocationManagerImpl::ProcessApplicationPolicyUpdate() { if (rc_extention) { rc_extention->UnsubscribeFromInteriorVehicleData(*module); } + SendOnRCStatusNotification(); } } } @@ -309,7 +310,6 @@ void ResourceAllocationManagerImpl::SetResourceFree( } allocated_resources_.erase(allocation); LOG4CXX_DEBUG(logger_, "Resource " << module_type << " is released."); - SendOnRCStatusNotification(); } std::vector<std::string> @@ -459,7 +459,9 @@ void ResourceAllocationManagerImpl::OnApplicationEvent( for (; acquired_modules.end() != module; ++module) { ReleaseResource(*module, application->app_id()); } - + if (!acquired_modules.empty()) { + SendOnRCStatusNotification(); + } Apps app_list; app_list.push_back(application); RemoveAppsSubscriptions(app_list); |