diff options
author | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-02-28 14:59:03 -0500 |
---|---|---|
committer | Alexis de Talhouët <adetalhouet89@gmail.com> | 2019-02-28 15:59:25 -0500 |
commit | 09460aff611767884905680d504b4fc3c8bb1476 (patch) | |
tree | 797cbb8b5590875391c4d4893b6af5d35d472c0e /grpc-resource/provider/src/main/resources | |
parent | e73462e38b5a282e7308a8d92a155e47f79d1b0e (diff) |
Integration test on gRPC client
Change-Id: I5a7c4103a9139a5d1cc324cd23f644ba63e254c7
Issue-ID: CCSDK-947 -
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
Diffstat (limited to 'grpc-resource/provider/src/main/resources')
-rw-r--r-- | grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml b/grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml index 2c428da37..9febe4846 100644 --- a/grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml +++ b/grpc-resource/provider/src/main/resources/org/opendaylight/blueprint/grpc-client.xml @@ -15,21 +15,16 @@ limitations under the License. --> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0" - odl:use-default-for-reference-types="true"> - + odl:use-default-for-reference-types="true" odl:restart-dependents-on-updates="true"> <bean id="grpcProperty" class="org.onap.ccsdk.sli.adaptors.grpc.GrpcProperties"/> <!--CDS--> - - <bean id="blueprintProcessingHandler" class="org.onap.ccsdk.sli.adaptors.grpc.cds.BlueprintProcessingHandler"/> - <bean id="grpcClient" class="org.onap.ccsdk.sli.adaptors.grpc.cds.BlueprintProcessingClient" init-method="start" destroy-method="stop"> - <argument ref="blueprintProcessingHandler"/> <argument ref="grpcProperty"/> </bean> - <service ref="grpcClient" interface="org.onap.ccsdk.sli.adaptors.grpc.cds.BlueprintProcessingClient" + <service ref="grpcClient" interface="org.onap.ccsdk.sli.adaptors.grpc.GrpcClient" odl:type="default"/> </blueprint> |