[Kimchi-devel] [PATCH 2/2] Move KCHASYNC0003E to Wok and update code.

pvital at linux.vnet.ibm.com pvital at linux.vnet.ibm.com
Wed Sep 30 17:01:57 UTC 2015


From: Paulo Vital <pvital at linux.vnet.ibm.com>

Move the KCHASYNC0003E  ("Timeout of %(seconds)s seconds expired while running
task '%(task)s.") message error from Kimchi to Wok and update its code to
WOKASYNC0003E.

Signed-off-by: Paulo Vital <pvital at linux.vnet.ibm.com>
---
 src/wok/i18n.py                | 2 ++
 src/wok/model/tasks.py         | 2 +-
 src/wok/plugins/kimchi/i18n.py | 2 --
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/wok/i18n.py b/src/wok/i18n.py
index 43a1edf..a6376bd 100644
--- a/src/wok/i18n.py
+++ b/src/wok/i18n.py
@@ -33,6 +33,8 @@ messages = {
 
     "WOKASYNC0001E": _("Datastore is not initiated in the model object."),
     "WOKASYNC0002E": _("Unable to start task due error: %(err)s"),
+    "WOKASYNC0003E": _("Timeout of %(seconds)s seconds expired while running task '%(task)s."),
+
 
     "WOKAUTH0001E": _("Authentication failed for user '%(username)s'. [Error code: %(code)s]"),
     "WOKAUTH0002E": _("You are not authorized to access Kimchi"),
diff --git a/src/wok/model/tasks.py b/src/wok/model/tasks.py
index 678fdc2..d57c908 100644
--- a/src/wok/model/tasks.py
+++ b/src/wok/model/tasks.py
@@ -60,5 +60,5 @@ class TaskModel(object):
 
             time.sleep(1)
 
-        raise TimeoutExpired('KCHASYNC0003E', {'seconds': timeout,
+        raise TimeoutExpired('WOKASYNC0003E', {'seconds': timeout,
                                                'task': task['target_uri']})
diff --git a/src/wok/plugins/kimchi/i18n.py b/src/wok/plugins/kimchi/i18n.py
index 2274d6f..ea325b8 100644
--- a/src/wok/plugins/kimchi/i18n.py
+++ b/src/wok/plugins/kimchi/i18n.py
@@ -25,8 +25,6 @@ _ = gettext.gettext
 messages = {
     "KCHAPI0001E": _("Unknown parameter %(value)s"),
 
-    "KCHASYNC0003E": _("Timeout of %(seconds)s seconds expired while running task '%(task)s."),
-
     "KCHAUTH0004E": _("User %(user_id)s not found with given LDAP settings."),
 
     "KCHDEVS0001E": _('Unknown "_cap" specified'),
-- 
2.4.3




More information about the Kimchi-devel mailing list