From the upstream askbot developer:
Btw, on your site - still first thing I'd update it and implement task queue: CELERY_ALWAYS_EAGER = False #in settings.py python manage.py celeryd #options are available on the command - to start the queue The task queue will make posts appear without delay as the time consuming part of sending email alerts will be done by the queue separately, rather than by the app process.
Btw, on your site - still first thing I'd update it and implement task queue:
CELERY_ALWAYS_EAGER = False #in settings.py python manage.py celeryd #options are available on the command - to start the queue
The task queue will make posts appear without delay as the time consuming part of sending email alerts will be done by the queue separately, rather than by the app process.
We are moving our ask instance to an upstream managed version.
We can perhaps revisit this after that transition has taken place.
Metadata Update from @kevin: - Issue close_status updated to: Will Not/Can Not fix - Issue status updated to: Closed (was: Open)