* [PATCH] toaster: fix unhandled traceback
@ 2016-07-12 13:26 Ed Bartosh
0 siblings, 0 replies; only message in thread
From: Ed Bartosh @ 2016-07-12 13:26 UTC (permalink / raw)
To: toaster
manage.py lsupdates throws DataError exception if the recipe can't be
saved to the MySQL database:
django.db.utils.DataError: (1406, "Data too long for column 'license' at row 1"
Adding DataError exception to the list of exceptions should make
lsupdates to print a warning message and skip the recipe.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
---
bitbake/lib/toaster/orm/models.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index 61f6a20..4bbca24 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -21,7 +21,7 @@
from __future__ import unicode_literals
-from django.db import models, IntegrityError
+from django.db import models, IntegrityError, DataError
from django.db.models import F, Q, Avg, Max, Sum, Count
from django.utils import timezone
from django.utils.encoding import force_bytes
@@ -1469,7 +1469,7 @@ class LayerIndexLayerSource(LayerSource):
else: # workaround for old style layer index
ro.is_image = "-image-" in ri['pn']
ro.save()
- except IntegrityError as e:
+ except (IntegrityError, DataError) as e:
logger.debug("Failed saving recipe, ignoring: %s (%s:%s)" % (e, ro.layer_version, ri['filepath']+"/"+ri['filename']))
ro.delete()
--
2.1.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-07-12 13:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-12 13:26 [PATCH] toaster: fix unhandled traceback Ed Bartosh
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.