def test_response_is_served_if_indexer_fails(self):
with mock.patch("kinto_elasticsearch.indexer.elasticsearch.helpers.bulk",
side_effect=elasticsearch.ElasticsearchException):
r = self.app.post_json("/buckets/bid/collections/cid/records",
{"data": {"hola": "mundo"}},
headers=self.headers)
assert r.status_code == 201
评论列表
文章目录