Issue #2929 - the pure Python Override now recognizes REGION as a valid localization level
Amend: use baseline Redmine number Change-Id: I765c1199e9d8b639e3c87afec41798459f0f92e4 Former-commit-id: b48eb97e9d270ad49d93f2ca85ceae48da9b9269
This commit is contained in:
parent
ab3de987b4
commit
4e320a35a3
1 changed files with 2 additions and 1 deletions
|
@ -30,6 +30,7 @@
|
|||
# ------------ ---------- ----------- --------------------------
|
||||
# 03/12/13 bkowal Initial Creation.
|
||||
# 02/17/14 2712 bkowal Provide a default value for localization site.
|
||||
# 03/19/14 2929 bkowal 'REGION' is now recognized as a valid localization level.
|
||||
#
|
||||
#
|
||||
#
|
||||
|
@ -47,7 +48,7 @@ from dynamicserialize.dstypes.com.raytheon.uf.common.localization import Localiz
|
|||
from dynamicserialize.dstypes.com.raytheon.uf.common.localization.stream import LocalizationStreamGetRequest
|
||||
|
||||
BUFFER_SIZE = 512 * 1024
|
||||
availableLevels = ['BASE', 'CONFIGURED', 'SITE', 'USER']
|
||||
availableLevels = ['BASE', 'REGION', 'CONFIGURED', 'SITE', 'USER']
|
||||
|
||||
def importModule(name, localizationHost, localizationPort, localizedSite=None, localizationUser=None,
|
||||
loctype='COMMON_STATIC', level=None):
|
||||
|
|
Loading…
Add table
Reference in a new issue