From cb0b99313d8c59de6cd467033af8b2a9ab36d7c5 Mon Sep 17 00:00:00 2001 From: Tommi Mantila Date: Mon, 1 Jun 2020 14:42:36 +0300 Subject: [PATCH 1/2] Fixed bug where DISABLE_SERVER_SIDE_CURSORS setting were in wrong place --- respa/settings.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/respa/settings.py b/respa/settings.py index fd8fb24c2..894d43fe8 100644 --- a/respa/settings.py +++ b/respa/settings.py @@ -94,11 +94,10 @@ def get_git_revision_hash(): 'default': env.db() } DATABASES['default']['ATOMIC_REQUESTS'] = True +DATABASES['default']['DISABLE_SERVER_SIDE_CURSORS'] = env('DISABLE_SERVER_SIDE_CURSORS') SECURE_PROXY_SSL_HEADER = env('SECURE_PROXY_SSL_HEADER') -DISABLE_SERVER_SIDE_CURSORS = env('DISABLE_SERVER_SIDE_CURSORS') - SITE_ID = 1 # Application definition From 7a63e80513576158f1bdf2275d1f0cf13919f146 Mon Sep 17 00:00:00 2001 From: Tommi Mantila Date: Mon, 1 Jun 2020 14:56:52 +0300 Subject: [PATCH 2/2] Bump version number --- respa/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/respa/__init__.py b/respa/__init__.py index 944d9aedb..5495ab3b1 100644 --- a/respa/__init__.py +++ b/respa/__init__.py @@ -1,3 +1,3 @@ -__version__ = '0.11.1' +__version__ = '0.11.2' VERSION = __version__