diff options
author | JvD_Ericsson <jeff.van.dam@est.tech> | 2023-01-27 12:02:05 +0000 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2023-01-27 15:05:43 +0000 |
commit | 8571d98d5b0eb81a80c35b07ae0d0bc7b16948ab (patch) | |
tree | e9ab0b12697f5696e225c90ed6ed536029b9162e /catalog-be/src/main/java/org/openecomp | |
parent | aa14db6b062be61ae8cba2bda1bb1aae6737d790 (diff) |
Temporary fix for unable to set values on props of a VFC in a service
Issue-ID: SDC-4352
Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech>
Change-Id: I4dc65a341445e38a33bfe438413b67c4c7fae098
Diffstat (limited to 'catalog-be/src/main/java/org/openecomp')
-rw-r--r-- | catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ComponentInstanceBusinessLogic.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ComponentInstanceBusinessLogic.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ComponentInstanceBusinessLogic.java index 64c66c5d79..0c93b1d90e 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ComponentInstanceBusinessLogic.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ComponentInstanceBusinessLogic.java @@ -1976,7 +1976,7 @@ public class ComponentInstanceBusinessLogic extends BaseBusinessLogic { for (ComponentInstanceProperty property : properties) { validateMandatoryFields(property); validatePropertyExistsOnComponent(property, containerComponent, foundResourceInstance); - validatePropertyConstraintsNotChanged(properties, foundResourceInstance); + // validatePropertyConstraintsNotChanged(properties, foundResourceInstance); String propertyParentUniqueId = property.getParentUniqueId(); if (property.isToscaFunction()) { toscaFunctionValidator.validate(property, containerComponent); |