From 2481a9b493260b3c5d059d2ae0a6b85b27ec8302 Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 3 Sep 2012 21:36:41 +0200 Subject: [PATCH] Minor bugfix --- src/settings_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings_default.py b/src/settings_default.py index 33fdf94eb5..f65b803d0d 100644 --- a/src/settings_default.py +++ b/src/settings_default.py @@ -352,7 +352,7 @@ RSS_UPDATE_INTERVAL = 60*10 # 10 minutes # multiple process-writes very well. It should work fine with other supported # databases. If you plan to change your database, copy the following line # to your settings file to have it deactivate automatically for sqlite3. -PROCPOOL_ENABLED = not DATABASES["default"]["ENGINE"] == 'django.db.backends.sqlite3' +PROCPOOL_ENABLED = False # not DATABASES["default"]["ENGINE"] == 'django.db.backends.sqlite3' # relay process stdout to log (debug mode, very spammy) PROCPOOL_DEBUG = False # max/min size of the process pool. Will expand up to max limit on demand.