Remove duplicated healthcheck api 55/84055/1
authorfujinhua <fu.jinhua@zte.com.cn>
Wed, 3 Apr 2019 07:57:39 +0000 (15:57 +0800)
committerfujinhua <fu.jinhua@zte.com.cn>
Wed, 3 Apr 2019 07:57:39 +0000 (15:57 +0800)
Change-Id: I5156d0f5f2973f363847adea6b72590387bff040
Issue-ID: VFC-1306
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
lcm/lcm/nf/urls.py
lcm/lcm/nf/views/health_check.py [deleted file]

index 2336ceb..c056eed 100644 (file)
@@ -21,7 +21,6 @@ from lcm.nf.views.subscriptions_view import SubscriptionsView
 from lcm.nf.views.heal_vnf_view import HealVnfView
 from lcm.nf.views.operate_vnf_view import OperateVnfView
 from lcm.nf.views.scale_vnf_view import ScaleVnfView
-from lcm.nf.views.health_check import HealthCheckView
 from lcm.nf.views.lcm_op_occs_view import QueryMultiVnfLcmOpOccs, QuerySingleVnfLcmOpOcc
 
 urlpatterns = [
@@ -35,7 +34,4 @@ urlpatterns = [
     url(r'^vnf_instances/(?P<instanceid>[0-9a-zA-Z_-]+)/scale$', ScaleVnfView.as_view()),
     url(r'^api/vnflcm/v1/vnf_lcm_op_occs$', QueryMultiVnfLcmOpOccs.as_view()),
     url(r'^api/vnflcm/v1/vnf_lcm_op_occs/(?P<lcmopoccid>[0-9a-zA-Z_-]+)$', QuerySingleVnfLcmOpOcc.as_view()),
-
-    # health check
-    url(r'^api/vnflcm/v1/healthcheck$', HealthCheckView.as_view()),
 ]
diff --git a/lcm/lcm/nf/views/health_check.py b/lcm/lcm/nf/views/health_check.py
deleted file mode 100644 (file)
index 9df01f2..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright (c) 2019, CMCC Technologies Co., Ltd.
-
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-
-# http://www.apache.org/licenses/LICENSE-2.0
-
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-import logging
-
-from rest_framework.views import APIView
-
-logger = logging.getLogger(__name__)
-
-
-class HealthCheckView(APIView):
-    logger.debug("Health check")
-    pass