Fix bug 772. vim_thread tasks key params 85/7685/2
authortierno <alfonso.tiernosepulveda@telefonica.com>
Wed, 19 Jun 2019 14:55:58 +0000 (14:55 +0000)
committertierno <alfonso.tiernosepulveda@telefonica.com>
Tue, 25 Jun 2019 14:39:36 +0000 (14:39 +0000)
Change-Id: I533859eb38a02ff3c084b6d53a735660f4ec46b1
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
osm_ro/http_tools/request_processing.py
osm_ro/vim_thread.py

index 0b8a6ca..f2dabc8 100644 (file)
@@ -150,11 +150,11 @@ def format_in(default_schema, version_fields=None, version_dict_schema=None, con
         return client_data, used_schema
     except (TypeError, ValueError, yaml.YAMLError) as exc:
         error_text += str(exc)
-        logger.error(error_text, exc_info=True)
+        logger.error(error_text)
         bottle.abort(httperrors.Bad_Request, error_text)
     except js_e.ValidationError as exc:
         logger.error(
-            "validate_in error, jsonschema exception", exc_info=True)
+            "validate_in error, jsonschema exception")
         error_pos = ""
         if len(exc.path)>0: error_pos=" at " + ":".join(map(json.dumps, exc.path))
         bottle.abort(httperrors.Bad_Request, error_text + exc.message + error_pos)
index 7b197da..ffe721c 100644 (file)
@@ -258,6 +258,7 @@ class vim_thread(threading.Thread):
                     # task of creation must be the first in the list of related_task
                     assert(related_tasks[0]["action"] in ("CREATE", "FIND"))
 
+                    task["params"] = None
                     if task["extra"]:
                         extra = yaml.load(task["extra"])
                     else: