Fix LCM evacuate issue 28/116128/1
authorMarcin Wilk <m.wilk@samsung.com>
Fri, 4 Dec 2020 12:24:43 +0000 (13:24 +0100)
committerMarcin Wilk <m.wilk@samsung.com>
Fri, 4 Dec 2020 12:24:43 +0000 (13:24 +0100)
The code was missing reset() call on RequestContext prior
calling the waitForStateChange, which relies on the reset attempt
value. As a result, the code didn't wait for the VM status change.

Issue-ID: APPC-1913
Signed-off-by: Marcin Wilk <m.wilk@samsung.com>
Change-Id: Ib80bb154e6380dd6a90077179db41117ec74e31b

appc-adapters/appc-iaas-adapter/appc-iaas-adapter-bundle/src/main/java/org/onap/appc/adapter/iaas/provider/operation/impl/EvacuateServer.java

index cfd816e..2ce8ab4 100644 (file)
@@ -123,6 +123,7 @@ public class EvacuateServer extends ProviderServerOperation {
             String targetHost) throws ZoneException, RequestFailedException {
         String msg;
         Context ctx = server.getContext();
+        rcCtx.reset();
         while (rcCtx.attempt()) {
             try {
                 logger.debug("Calling CDP moveServer - server id = " + server.getId());