aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Polenchuk <mpolenchuk@mirantis.com>2017-03-20 17:39:41 +0400
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-03-20 17:28:37 +0000
commitad3f05477a5e53a03d4acf0b87a997c51a58679a (patch)
treee4565df373a96eec42f7384a3548acd646fac7de
parent48998cd5e133b918bc9a9f010b4fe45747616d14 (diff)
Extend error messages list
Start redeploy if errors for the following bugs are caught: https://bugs.launchpad.net/fuel/+bug/1673797 https://bugs.launchpad.net/fuel/+bug/1672683 Change-Id: I41bc10d983f193e4206f0913358f5710f034070a Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com> (cherry picked from commit cffc4bb6d13b67d7e1c7ee0f1412ded1704fe999)
-rw-r--r--deploy/cloud/deployment.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/deploy/cloud/deployment.py b/deploy/cloud/deployment.py
index 7f791cbc6..4329a4cec 100644
--- a/deploy/cloud/deployment.py
+++ b/deploy/cloud/deployment.py
@@ -25,7 +25,9 @@ GREP_LINES_OF_LEADING_CONTEXT = 100
GREP_LINES_OF_TRAILING_CONTEXT = 100
LIST_OF_CHAR_TO_BE_ESCAPED = ['[', ']', '"']
ERROR_MSGS = ['Critical nodes are not available for deployment',
- 'offline. Remove them from environment and try again.']
+ 'offline. Remove them from environment and try again.',
+ 'Task[move_to_bootstrap/',
+ 'Failed tasks: Task[connectivity-checker/']
class DeployNotStart(Exception):