summaryrefslogtreecommitdiffstats
path: root/lcm/lcm/nf/urls.py
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2019-04-03 15:57:39 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2019-04-03 15:57:39 +0800
commitd1b1a0683de659bec2c48a758e02052dd531a918 (patch)
tree1bfc368ca133b90846f9da58c7f74b0d6c3ebb4c /lcm/lcm/nf/urls.py
parent40df7d0426f2029b01c2deb4ff06d5f499b188ea (diff)
Remove duplicated healthcheck api
Change-Id: I5156d0f5f2973f363847adea6b72590387bff040 Issue-ID: VFC-1306 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'lcm/lcm/nf/urls.py')
-rw-r--r--lcm/lcm/nf/urls.py4
1 files changed, 0 insertions, 4 deletions
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<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()),
]