Skip to content

Commit 19ef999

Browse files
Wrong field was used in check
1 parent cba8e40 commit 19ef999

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

framework/config/src/org/apache/cloudstack/framework/config/impl/ConfigDepotImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public void populateConfigurations() {
9797
_configDao.persist(vo);
9898
} else {
9999
if (vo.isDynamic() != key.isDynamic() ||
100-
!ObjectUtils.equals(vo.getDescription(), vo.getDescription()) ||
100+
!ObjectUtils.equals(vo.getDescription(), key.description()) ||
101101
!ObjectUtils.equals(vo.getDefaultValue(), key.defaultValue())) {
102102
vo.setDynamic(key.isDynamic());
103103
vo.setDescription(key.description());

0 commit comments

Comments
 (0)