From 8571d98d5b0eb81a80c35b07ae0d0bc7b16948ab Mon Sep 17 00:00:00 2001 From: JvD_Ericsson Date: Fri, 27 Jan 2023 12:02:05 +0000 Subject: Temporary fix for unable to set values on props of a VFC in a service Issue-ID: SDC-4352 Signed-off-by: JvD_Ericsson Change-Id: I4dc65a341445e38a33bfe438413b67c4c7fae098 --- .../sdc/be/components/impl/ComponentInstanceBusinessLogic.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'catalog-be/src/main') 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); -- cgit 1.2.3-korg