From: xuegao Date: Fri, 23 Oct 2020 12:24:09 +0000 (+0200) Subject: Fix workflow issue X-Git-Tag: 1.7.2~3 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F04%2F114204%2F2;p=sdc.git Fix workflow issue Fix the workflow issue where workflow is not packed into csar, if added after a checkout. Issue-ID: SDC-3311 Signed-off-by: xuegao Change-Id: I673a8127087fb31eddd8badae8f3bd400ef8cb3e --- diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java b/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java index 61068f26a8..123e1b18ad 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java @@ -1586,10 +1586,6 @@ public class CsarUtils { if (!deploymentArtifactsByType.isEmpty() ){ artifactsInfo.addArtifactsToGroup(ArtifactGroupTypeEnum.DEPLOYMENT, deploymentArtifactsByType); } - //Add component interface operation artifacts - if(MapUtils.isNotEmpty(interfaceOperationArtifacts)) { - artifactsInfo.addArtifactsToGroup(ArtifactGroupTypeEnum.DEPLOYMENT, interfaceOperationArtifactsByType); - } return artifactsInfo; }