diff options
author | eleonorali <eleonoral@amdocs.com> | 2018-02-11 14:04:58 +0200 |
---|---|---|
committer | eleonorali <eleonoral@amdocs.com> | 2018-02-11 14:04:58 +0200 |
commit | 27fed258bd045e4af8cdc1181ebf3cef8d0822cc (patch) | |
tree | b6fcb62e3b8893783ecc7ad7e4b8be42ee332213 /openecomp-be/lib/openecomp-heat-lib | |
parent | d5b4901c6a1ae136138c1300d377447e26bac4ef (diff) |
Artifact was not associated
ASDC is not associating get_file
Change-Id: I56cda457c061e5228012d43b5743ebfa24b4bb0d
Issue-ID: SDC-1016
Signed-off-by: eleonorali <eleonoral@amdocs.com>
Diffstat (limited to 'openecomp-be/lib/openecomp-heat-lib')
-rw-r--r-- | openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/services/tree/HeatTreeManagerUtil.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/services/tree/HeatTreeManagerUtil.java b/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/services/tree/HeatTreeManagerUtil.java index 87022f4e37..7a2dfc971b 100644 --- a/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/services/tree/HeatTreeManagerUtil.java +++ b/openecomp-be/lib/openecomp-heat-lib/src/main/java/org/openecomp/sdc/heat/services/tree/HeatTreeManagerUtil.java @@ -1,5 +1,5 @@ /* - * Copyright © 2016-2017 European Support Limited + * Copyright © 2018 European Support Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -96,8 +96,8 @@ public class HeatTreeManagerUtil { Collection<Object> properties = resource.getProperties() == null ? null : resource.getProperties().values(); - artifactSet = getArtifactsFromPropertiesAndAddInArtifactSet(properties, - filename, globalContext); + artifactSet.addAll(getArtifactsFromPropertiesAndAddInArtifactSet(properties, + filename, globalContext)); } } return artifactSet; |