Activity log for bug #802868

Date Who What changed Old value New value Message
2011-06-28 08:42:55 Michael Nelson bug added bug
2011-06-28 08:49:09 Michael Nelson description We're seeing numerous oopses each day on reviews.ubuntu.com for posts to (for example) /reviews/api/1.0/reviews/11039/recommendations/ with tracebacks like: https://pastebin.canonical.com/49101/ We lose the original trackback because a second exception is recorded while piston-miniclient tries to log the error, but there's enough info to be certain that the issue is in reviewsapp.api.handlers.SubmitUsefulnessHandler.create: {{{ usefulness, created = Usefulness.objects.get_or_create( review=review, user=request.user) }}} The MultipleObjectsReturned seems to imply that it is already possible for a user to create 2 recommendations for a single review... and we're erroring when they try to create a third :). Checking the model, there is currently no db constraint for this on the Usefulness model... we should add one with a migration to delete duplicates (or is there a reason why a single user should have multiple recommendations for a review?) We're seeing numerous oopses each day on reviews.ubuntu.com for posts to (for example) /reviews/api/1.0/reviews/11039/recommendations/ with tracebacks like: https://pastebin.canonical.com/49101/ We lose the original trackback because a second exception is recorded while piston-miniclient tries to log the error, but there's enough info to be certain that the issue is in reviewsapp.api.handlers.SubmitUsefulnessHandler.create: {{{         usefulness, created = Usefulness.objects.get_or_create(             review=review, user=request.user) }}} The MultipleObjectsReturned seems to imply that it is already possible (somehow) for a user to create 2 recommendations for a single review and we're erroring when they try to create a third :). Checking the model, there is currently no db constraint for this on the Usefulness model... we should add one with a migration to delete duplicates while fixing the error.
2011-06-28 08:49:40 Michael Nelson bug task added piston-mini-client
2011-06-28 08:51:48 Michael Nelson tags oops
2011-06-28 14:06:41 Michael Nelson piston-mini-client: status New Invalid