summaryrefslogtreecommitdiffstats
path: root/lcm
diff options
context:
space:
mode:
authormaopengzhang <zhang.maopeng1@zte.com.cn>2018-11-14 19:40:12 +0800
committermaopengzhang <zhang.maopeng1@zte.com.cn>2018-11-14 19:40:12 +0800
commitcc5046b851dcdad7a0ec0225f685788b3db93a57 (patch)
treeea40c4d924b660394ac887403075d56c47af057a /lcm
parentd31d7c3c00b7facb05a17906e9152ee076d15a03 (diff)
fix Sub error
fix sub URI error Change-Id: I856216cf10a2565995ca20bce6e23518772837d4 Issue-ID: VFC-1185 Signed-off-by: maopengzhang <zhang.maopeng1@zte.com.cn>
Diffstat (limited to 'lcm')
-rw-r--r--lcm/lcm/nf/serializers/lccn_subscription_request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lcm/lcm/nf/serializers/lccn_subscription_request.py b/lcm/lcm/nf/serializers/lccn_subscription_request.py
index a11de885..445845ae 100644
--- a/lcm/lcm/nf/serializers/lccn_subscription_request.py
+++ b/lcm/lcm/nf/serializers/lccn_subscription_request.py
@@ -19,7 +19,7 @@ from subscription_auth_data import SubscriptionAuthenticationSerializer
class LccnSubscriptionRequestSerializer(serializers.Serializer):
- callbackUri = serializers.URLField(
+ callbackUri = serializers.CharField(
help_text="The URI of the endpoint to send the notification to.",
required=True,
allow_null=False)