Rémy HUBSCHER

Results 392 comments of Rémy HUBSCHER

To be honest I don't know how this can happen... ```python if action == ACTIONS.DELETE: if not isinstance(data, list): impacted = [{'new': data, 'old': old}] else: impacted = [] for...

This might be related to a fix that we did here: https://github.com/Kinto/kinto/pull/1249

I couldn't reproduce anymore with the fix. Feel free to reopen if you see the bug again.

We are at a stage were we don't really know yet, since the PyPA is talking a lot about pyproject.toml. Packaging in Python has been hard to grasp for years...

This is the next level which is to be able to link to a user multiple auth mecanisms. Today we didn't find ourselves needing it but I can definitely see...

Also note that if you can guarantee that the HTTP call to trigger the lambda is really quick you could call the HTTP endpoint directly without relying on redis in...

> Is that feasible? Yes it is with setup.py entry_points: http://stackoverflow.com/a/9615473/186202

Refs https://github.com/Kinto/kinto-http.py/issues/187

What about the idea of removing the memory backend and using a SQLite3 backend (we can use a temporary file in memory to keep the memory backend feature) plus we...