oTree-org
oTree-org
+1, my project uses SaveTheChange pretty heavily and all my tests are passing.
I have a framework [here](https://github.com/oTree-org/otree) where each app has 3 models: Player, Group, Subsession. Usually, 3 models is enough. However, occasionally, users need a variable number of fields on their...
Great, thank you so much!
If you have many subclass models, a workaround is to apply the decorator in the metaclass. This works for me with Python 3.6 and Django 1.8.8: ```python from django.db import...
I'm potentially interested in contributing/testing ASGI support. (I'm using Starlette/Uvicorn.)
> What would help would be to know if this happens without gunicorn, just to make sure we throw that out of the equation. This issue is occurring for me...
FYI If I catch & ignore this exception in the `send` method of my Django channels consumer (see exception above), I run into this issue: https://github.com/encode/uvicorn/issues/244
To add to the above, I can't see it explained when I can expect the consumer to run -- is it when I call send_json_to(), or wait(), or receive_json_from()?
I also think the introductory section from Consumers (https://channels.readthedocs.io/en/latest/topics/consumers.html) could be reduced: > While Channels is built around a basic low-level spec called ASGI, it’s more designed for interoperability than...
Thanks for reporting, it’s OK because SECRET_KEY is actually ignored when on oTree Hub / Heroku. Sent from my phone > On Sep 24, 2021, at 6:38 AM, Peter Cock...