1+ import sys
12import xml .etree .ElementTree as ET
23from .property_decorators import (property_is_enum , property_is_boolean , property_matches ,
34 property_not_empty , property_not_nullable , property_is_int )
@@ -159,7 +160,7 @@ def tier_creator_capacity(self):
159160 return self ._tier_creator_capacity
160161
161162 @tier_creator_capacity .setter
162- @property_is_int ((0 , 100000 ), allowed = (None ,))
163+ @property_is_int ((0 , sys . maxsize ), allowed = (- 1 , None ,))
163164 def tier_creator_capacity (self , value ):
164165 self ._tier_creator_capacity = value
165166
@@ -168,7 +169,7 @@ def tier_explorer_capacity(self):
168169 return self ._tier_explorer_capacity
169170
170171 @tier_explorer_capacity .setter
171- @property_is_int ((0 , 100000 ), allowed = (None ,))
172+ @property_is_int ((0 , sys . maxsize ), allowed = (- 1 , None ,))
172173 def tier_explorer_capacity (self , value ):
173174 self ._tier_explorer_capacity = value
174175
@@ -177,7 +178,7 @@ def tier_viewer_capacity(self):
177178 return self ._tier_viewer_capacity
178179
179180 @tier_viewer_capacity .setter
180- @property_is_int ((0 , 100000 ), allowed = (None ,))
181+ @property_is_int ((0 , sys . maxsize ), allowed = (- 1 , None ,))
181182 def tier_viewer_capacity (self , value ):
182183 self ._tier_viewer_capacity = value
183184
0 commit comments