diff options
author | ramu.n <ramu.n@huawei.com> | 2020-04-30 21:21:15 +0530 |
---|---|---|
committer | ramu.n <ramu.n@huawei.com> | 2020-04-30 21:21:43 +0530 |
commit | 440c44a4f57858b8bc5146ae730bb08d8d09ddc1 (patch) | |
tree | a3db4744306e6415b94540cc326ba2eb77dd3129 /mso-catalog-db/src | |
parent | 788ada8a8c280e7599c46281804468d0e468d42b (diff) |
Fix BBS integration issue
Issue-ID: SO-2827
Change-Id: I292094db2740632cefc9962ab5bf6028b51bdbb8
Signed-off-by: ramu.n <ramu.n@huawei.com>
Diffstat (limited to 'mso-catalog-db/src')
-rw-r--r-- | mso-catalog-db/src/main/java/org/onap/so/db/catalog/beans/VnfResourceCustomization.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mso-catalog-db/src/main/java/org/onap/so/db/catalog/beans/VnfResourceCustomization.java b/mso-catalog-db/src/main/java/org/onap/so/db/catalog/beans/VnfResourceCustomization.java index 094a1f0bf3..8e1814f225 100644 --- a/mso-catalog-db/src/main/java/org/onap/so/db/catalog/beans/VnfResourceCustomization.java +++ b/mso-catalog-db/src/main/java/org/onap/so/db/catalog/beans/VnfResourceCustomization.java @@ -156,7 +156,7 @@ public class VnfResourceCustomization implements Serializable { .append("vfModuleCustomizations", vfModuleCustomizations) .append("vnfcInstanceGroupOrder", vnfcInstanceGroupOrder) .append("vnfcInstanceGroupCustomizations", vnfcInstanceGroupCustomizations) - .append("controllerActor", controllerActor).toString(); + .append("controllerActor", controllerActor).append("resourceInput", resourceInput).toString(); } @PrePersist |