revert django-q configuration

This commit is contained in:
jonaswinkler 2021-02-13 20:25:52 +01:00
parent b48e67d714
commit 12836d4c68
2 changed files with 3 additions and 1 deletions

View File

@ -14,6 +14,8 @@ paperless-ng 1.1.2
* Fixed an issue with the metadata tab not reporting anything in case of missing files. * Fixed an issue with the metadata tab not reporting anything in case of missing files.
* Reverted a change from 1.1.0 that caused huge memory usage due to redis caching.
paperless-ng 1.1.1 paperless-ng 1.1.1
################## ##################

View File

@ -398,7 +398,7 @@ Q_CLUSTER = {
'name': 'paperless', 'name': 'paperless',
'catch_up': False, 'catch_up': False,
'workers': TASK_WORKERS, 'workers': TASK_WORKERS,
'django_redis': 'default' 'redis': os.getenv("PAPERLESS_REDIS", "redis://localhost:6379")
} }