log errors with the builder pingback

This commit is contained in:
Jeff Balogh 2011-05-17 13:24:00 -07:00
Родитель 8278ed1ea2
Коммит 3ab17b5e34
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -171,6 +171,7 @@ def builder_pingback(request):
data['id'] # Ensure id is available.
assert data.get('secret') == settings.BUILDER_SECRET_KEY
except Exception:
log.warning('Problem with builder pingback.', exc_info=True)
return http.HttpResponseBadRequest()
repackage_jetpack.delay(data)
return http.HttpResponse()