diff options
author | xuegao <xg353y@intl.att.com> | 2020-10-23 14:24:09 +0200 |
---|---|---|
committer | S�bastien Determe <sebastien.determe@intl.att.com> | 2020-10-26 09:11:47 +0000 |
commit | 65fec643907871f80aba674eb1acb30bdad6c89e (patch) | |
tree | c55fa76d6ccc3cf786d821a22ad0634036d965d3 /catalog-be/src | |
parent | 378b6774ddad25d74ba7f05d173bc794b3963c7c (diff) |
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 <xg353y@intl.att.com>
Change-Id: I673a8127087fb31eddd8badae8f3bd400ef8cb3e
Diffstat (limited to 'catalog-be/src')
-rw-r--r-- | catalog-be/src/main/java/org/openecomp/sdc/be/tosca/CsarUtils.java | 4 |
1 files changed, 0 insertions, 4 deletions
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; } |