From d1b1a0683de659bec2c48a758e02052dd531a918 Mon Sep 17 00:00:00 2001 From: fujinhua Date: Wed, 3 Apr 2019 15:57:39 +0800 Subject: [PATCH] Remove duplicated healthcheck api Change-Id: I5156d0f5f2973f363847adea6b72590387bff040 Issue-ID: VFC-1306 Signed-off-by: fujinhua --- lcm/lcm/nf/urls.py | 4 ---- lcm/lcm/nf/views/health_check.py | 24 ------------------------ 2 files changed, 28 deletions(-) delete mode 100644 lcm/lcm/nf/views/health_check.py diff --git a/lcm/lcm/nf/urls.py b/lcm/lcm/nf/urls.py index 2336cebb..c056eed7 100644 --- a/lcm/lcm/nf/urls.py +++ b/lcm/lcm/nf/urls.py @@ -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[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[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 index 9df01f2b..00000000 --- a/lcm/lcm/nf/views/health_check.py +++ /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 -- 2.16.6