diff options
author | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2023-07-18 13:43:11 +0100 |
---|---|---|
committer | Adheli Tavares <adheli.tavares@est.tech> | 2023-07-20 09:55:48 +0000 |
commit | a78d8dbecaca562d900858321e70c2a9fa064ec7 (patch) | |
tree | 801d77526a8ae60c76133046baedfe5d55b27a2d /runtime-acm/src | |
parent | f00c49c9d09c7b2e1fed001f64cc052585e93d99 (diff) |
Fix State change result of AC instances after timeout
If the AC operation succeeds/failed after timeout, the latest results were not updated in the database.
Issue-ID: POLICY-4769
Signed-off-by: zrrmmua <ramesh.murugan.iyer@est.tech>
Change-Id: Id849a79847f85aa96ae36cd614d045e180731ebf
Diffstat (limited to 'runtime-acm/src')
-rw-r--r-- | runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/supervision/SupervisionAcHandler.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/supervision/SupervisionAcHandler.java b/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/supervision/SupervisionAcHandler.java index 5a2079b0d..df5d0ff0e 100644 --- a/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/supervision/SupervisionAcHandler.java +++ b/runtime-acm/src/main/java/org/onap/policy/clamp/acm/runtime/supervision/SupervisionAcHandler.java @@ -248,10 +248,9 @@ public class SupervisionAcHandler { Set<Map.Entry<UUID, AcElementDeployAck>> automationCompositionResultSet, StateChangeResult stateChangeResult) { var updated = false; - var elementInErrors = StateChangeResult.FAILED.equals(stateChangeResult); boolean inProgress = !StateChangeResult.FAILED.equals(automationComposition.getStateChangeResult()); - if (elementInErrors && inProgress) { - automationComposition.setStateChangeResult(StateChangeResult.FAILED); + if (inProgress) { + automationComposition.setStateChangeResult(stateChangeResult); } for (var acElementAck : automationCompositionResultSet) { |