Skip to content

Commit 155f2d4

Browse files
committed
Stop treating lsa 'none' as None
1 parent e11149c commit 155f2d4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/main/python/wlsdeploy/tool/util/wlst_helper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,8 @@ def lsa(self, path=None, log_throwing=True):
480480
value = entry.getValue()
481481
if value and type(value) in [str, unicode]:
482482
new_value = value.rstrip()
483-
if new_value == 'null' or new_value == 'none':
483+
# 'none' was previously mapped to None, interfered with RotationType 'none'
484+
if new_value == 'null':
484485
make_dict[key] = None
485486
else:
486487
make_dict[key] = new_value

0 commit comments

Comments
 (0)