Projet

Général

Profil

0005-ajout-d-une-ligne-de-log-sur-le-changement-de-statut.patch

Benjamin Dauvergne, 24 mai 2018 10:42

Télécharger (1,07 ko)

Voir les différences:

Subject: [PATCH 5/8] =?UTF-8?q?ajout=20d'une=20ligne=20de=20log=20sur=20le?=
 =?UTF-8?q?=20changement=20de=20statut=20d'une=20instance=20venant=20d'ozw?=
 =?UTF-8?q?illo=20=C3=A0=20TO=5FDESTROY=20(to=20be=20rebased)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

 hobo/contrib/ozwillo/views.py | 1 +
 1 file changed, 1 insertion(+)
hobo/contrib/ozwillo/views.py
139 139
    except OzwilloInstance.DoesNotExist:
140 140
        return HttpResponseBadRequest('no instance with id %s' % data['instance_id'])
141 141
    instance.to_destroy()
142
    logger.info(u'ozwillo: destroy registered for %s (%s)', instance.domain_slug, instance.external_ozwillo_id)
142 143
    return HttpResponse(status=200)
143
-