Update default tag limits due to backend changes

The backend no longer returns tag length limit in corresponding API,
hence we need to update default values to reflect limits in 2.4 onwards

Change-Id: Id8a92f16577899e1f137eb865fb6819a91e244d9
This commit is contained in:
Anna Khmelnitsky 2019-06-14 08:50:33 -07:00
parent 393d28bed3
commit e4f10b8756
1 changed files with 4 additions and 4 deletions

View File

@ -33,10 +33,10 @@ LOG = log.getLogger(__name__)
TagLimits = collections.namedtuple('TagLimits',
['scope_length', 'tag_length', 'max_tags'])
# The tag limits may change in the NSX. We set the default values to be those
# in NSX 2.0. If the NSX returns different values we update these globals.
MAX_RESOURCE_TYPE_LEN = 20
MAX_TAG_LEN = 40
# These defaults reflect latest tag & scope limits on the backend. As of 2.5,
# backend no longer returns tag limit via API.
MAX_RESOURCE_TYPE_LEN = 128
MAX_TAG_LEN = 256
MAX_TAGS = 15
MAX_NSGROUPS_CRITERIA_TAGS = 10