diff options
author | katy.rotman <katy.rotman@amdocs.com> | 2018-04-29 14:56:55 +0300 |
---|---|---|
committer | Avi Gaffa <avi.gaffa@amdocs.com> | 2018-04-30 14:28:25 +0000 |
commit | eaa3a10b650c44e7eaabf94ed48c94031c5d4a1e (patch) | |
tree | 6bf46ffaa7046b2cf8377230b54f8730ef2938bb /catalog-be/src/main/resources | |
parent | 72d62fb1aaaaeaed462083e232f3571b3bde6b08 (diff) |
Fix for fail submit service&recommit change 44091
Issue-ID: SDC-1267
Change-Id: I3439e8f4df8c17c3d3635e804473212f1a9aaf34
Signed-off-by: katy.rotman <katy.rotman@amdocs.com>
Diffstat (limited to 'catalog-be/src/main/resources')
-rw-r--r-- | catalog-be/src/main/resources/config/error-configuration.yaml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/catalog-be/src/main/resources/config/error-configuration.yaml b/catalog-be/src/main/resources/config/error-configuration.yaml index b0f2e2107f..de5196e11e 100644 --- a/catalog-be/src/main/resources/config/error-configuration.yaml +++ b/catalog-be/src/main/resources/config/error-configuration.yaml @@ -2060,9 +2060,9 @@ errors: messageId: "SVC4698" } #---------SVC4699----------------------------- - INTERFACE_OPERATION_INPUT_NAME_INVALID: { + INTERFACE_OPERATION_INPUT_NAME_ALREADY_IN_USE: { code: 400, - message: "Error: Interface Operation input parameter names %1 are invalid ,Input parameters name should be unique", + message: "Error: Interface Operation input parameter names %1 already in use", messageId: "SVC4699" } #---------SVC4700----------------------------- @@ -2084,3 +2084,17 @@ errors: message: "Error: Failed to delete interface operation.", messageId: "SVC4702" } +#---------SVC4703----------------------------- +# %1 – asset type [service / resource ] +# %2 – main asset uuid + ERROR_DURING_CSAR_CREATION: { + code: 404, + message: "Error: CSAR packaging failed for %1 %2.", + messageId: "SVC4702" + } +#---------SVC46703----------------------------- + INTERFACE_OPERATION_INPUT_NAME_MANDATORY: { + code: 404, + message: "Error: Interface operation input parameter name should not be empty", + messageId: "SVC46703" + } |