diff options
-rw-r--r-- | mso/src/main/java/org/openecomp/policy/mso/MSOManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mso/src/main/java/org/openecomp/policy/mso/MSOManager.java b/mso/src/main/java/org/openecomp/policy/mso/MSOManager.java index 75369e6e4..dcac32626 100644 --- a/mso/src/main/java/org/openecomp/policy/mso/MSOManager.java +++ b/mso/src/main/java/org/openecomp/policy/mso/MSOManager.java @@ -60,7 +60,7 @@ public final class MSOManager { System.out.println(body); String requestId = response.requestReferences.requestId; - int attemptsLeft = 7; + int attemptsLeft = 20; //String getUrl = "/orchestrationRequests/v2/"+requestId; String urlGet = urlBase + "/orchestrationRequests/v2/"+requestId; @@ -84,7 +84,7 @@ public final class MSOManager { Thread.sleep(20000); } - System.out.println("***** ######## VF Module Creation takes too long... can't wait longer. Status: ("+responseGet.request.requestStatus.requestState+")"); + System.out.println("***** ######## VF Module Creation timeout. Status: ("+responseGet.request.requestStatus.requestState+")"); return responseGet; } catch (JsonSyntaxException e) { System.err.println("Failed to deserialize into MSOResponse" + e.getLocalizedMessage()); |