diff options
author | halil.cakal <halil.cakal@est.tech> | 2023-08-01 16:35:58 +0100 |
---|---|---|
committer | halil.cakal <halil.cakal@est.tech> | 2023-08-04 14:41:42 +0100 |
commit | 640e0ed06320d594e0ef18557f0051ead853712e (patch) | |
tree | 33c0989d420facf4c088e91776ae8489be6ec415 /cps-ncmp-service/src/test/resources/avcSubscriptionEventResponse.json | |
parent | 7a049060b9ee2306eb562f75a1cbd0d50eb14f41 (diff) |
Subscription Creation: Fixes for code review after demo
- Change missleading subscription details in testware
- Change datastore check to comply with CPS enum
- Remove redundant CloudConstructionException
- Change exception handling in cloud event mappers
to avoid loss of information
- Remove exception handling from scheduler service
as discussed in the meeting
Issue-ID: CPS-1732
Change-Id: I9fee2eafd4db97a0eed80e39219463c904f5a980
Signed-off-by: halil.cakal <halil.cakal@est.tech>
Diffstat (limited to 'cps-ncmp-service/src/test/resources/avcSubscriptionEventResponse.json')
-rw-r--r-- | cps-ncmp-service/src/test/resources/avcSubscriptionEventResponse.json | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/cps-ncmp-service/src/test/resources/avcSubscriptionEventResponse.json b/cps-ncmp-service/src/test/resources/avcSubscriptionEventResponse.json index 52ca1df62b..dfe8f50466 100644 --- a/cps-ncmp-service/src/test/resources/avcSubscriptionEventResponse.json +++ b/cps-ncmp-service/src/test/resources/avcSubscriptionEventResponse.json @@ -7,37 +7,22 @@ { "id": "CMHandle1", "status": "REJECTED", - "details": "Faulty subscription format for target(s)" + "details": "Some error message from the DMI" }, { "id": "CMHandle2", "status": "REJECTED", - "details": "Faulty subscription format for target(s)" + "details": "Some other error message from the DMI" }, { "id": "CMHandle3", - "status": "REJECTED", - "details": "Faulty subscription format for target(s)" - }, - { - "id": "CMHandle4", - "status": "REJECTED", - "details": "Target(s) do not exist" - }, - { - "id": "CMHandle5", "status": "PENDING", - "details": "EMS or node connectivity issues, retrying" + "details": "No reply from DMI yet" }, { - "id": "CMHandle6", - "status": "PENDING", - "details": "EMS or node connectivity issues, retrying" - }, - { - "id": "CMHandle7", + "id": "CMHandle4", "status": "PENDING", - "details": "EMS or node connectivity issues, retrying" + "details": "No reply from DMI yet" } ] } |