aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaopengzhang <zhang.maopeng1@zte.com.cn>2019-03-30 15:18:06 +0800
committermaopengzhang <zhang.maopeng1@zte.com.cn>2019-03-30 15:18:06 +0800
commit5b3de3009b2c799905aadd6d4dba29785fdf983f (patch)
treeaec5e264b3aeb185d2b7472f38d2c1471f546027
parent41db142010134a62afdad43b5f9326cf324cc1ba (diff)
fix affected nss Serializer error
fix affected nss Serializer error Change-Id: I2c95463b0fd7dd244927db23563f546fccbe58dd Issue-ID: VFC-1213 Signed-off-by: maopengzhang <zhang.maopeng1@zte.com.cn>
-rw-r--r--lcm/ns/serializers/sol/affected_nss.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lcm/ns/serializers/sol/affected_nss.py b/lcm/ns/serializers/sol/affected_nss.py
index 208e311b..2ac6b969 100644
--- a/lcm/ns/serializers/sol/affected_nss.py
+++ b/lcm/ns/serializers/sol/affected_nss.py
@@ -1,4 +1,5 @@
# Copyright (c) 2019, CMCC Technologies Co., Ltd.
+# Copyright 2019 ZTE Corporation.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -45,12 +46,12 @@ class AffectedNssSerializer(serializers.Serializer):
required=True
)
changeType = serializers.ChoiceField(
- help_text="Signals the type of change",
+ help_text="Signals the type of lifecycle change.",
required=True,
choices=CHANGE_TYPE
)
changeResult = serializers.ChoiceField(
- help_text="Signals the type of change",
+ help_text="Signals the result of change identified by the changeType attribute.",
required=True,
choices=CHANGE_RESULT
)