From: vrvarma Date: Thu, 23 May 2019 14:32:06 +0000 (-0400) Subject: Update the pciopt request to accept empty anrInputList X-Git-Tag: 1.3.1~1 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F61%2F88361%2F1;p=optf%2Fosdf.git Update the pciopt request to accept empty anrInputList Change-Id: Ia029867262aede2bd351dd046bc7c1483a408c09 Signed-off-by: vrvarma Issue-ID: OPTFRA-505 --- diff --git a/osdf/models/api/pciOptimizationRequest.py b/osdf/models/api/pciOptimizationRequest.py index 6cb34c7..f5ec6b7 100644 --- a/osdf/models/api/pciOptimizationRequest.py +++ b/osdf/models/api/pciOptimizationRequest.py @@ -44,7 +44,7 @@ class CellInfo(OSDFModel): """Information specific to CellInfo """ networkId = StringType(required=True) cellIdList = ListType(StringType(required=True)) - anrInputList = ListType(ModelType(ANRInfo), min_size=1) + anrInputList = ListType(ModelType(ANRInfo)) trigger = StringType()