diff options
author | vasraz <vasyl.razinkov@est.tech> | 2022-11-25 12:48:58 +0000 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2022-11-25 12:51:37 +0000 |
commit | 630e46ef816ea2d16d358ed3fab0d9ebed884c19 (patch) | |
tree | be58e61d4fd5d0cae30ea65e3f53c339043b6ba7 /catalog-be/src/main/resources | |
parent | 5e71c18416adc5c136ea9053a6bbac819da18c60 (diff) |
Fix issues while importing a Service
The import service was ignoring the selected model for imported nodes.
It was also trying to set a different icon for resources that already
exist in the database, creating a validation error.
There was also a nullpointer in relation to not found capability.
Change-Id: Ifa9320c5554bbf5e8fed0cc2e2dea6b05503d213
Issue-ID: SDC-4266
Signed-off-by: André Schmid <andre.schmid@est.tech>
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Diffstat (limited to 'catalog-be/src/main/resources')
-rw-r--r-- | catalog-be/src/main/resources/config/error-configuration.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/catalog-be/src/main/resources/config/error-configuration.yaml b/catalog-be/src/main/resources/config/error-configuration.yaml index ee5f7fa836..6bed75ef2e 100644 --- a/catalog-be/src/main/resources/config/error-configuration.yaml +++ b/catalog-be/src/main/resources/config/error-configuration.yaml @@ -2848,3 +2848,10 @@ errors: message: "An unexpected error occurred while %1." messageId: "SVC4013" + + # %1 - The capability name + # %2 - The model + CAPABILITY_NOT_FOUND: + code: 404 + message: "Capability '%1' was not found for model '%2'." + messageId: "SVC4014"
\ No newline at end of file |