File: 0007-Fix-redis-host.patch

package info (click to toggle)
django-q 1.7.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,276 kB
  • sloc: python: 5,663; makefile: 181; sh: 30
file content (22 lines) | stat: -rw-r--r-- 600 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Roland Mas <lolando@debian.org>
Date: Wed, 27 Dec 2023 13:55:21 +0100
Subject: Fix redis host

Forwarded: not-needed
---
 django_q/tests/settings.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/django_q/tests/settings.py b/django_q/tests/settings.py
index b624644..4191592 100644
--- a/django_q/tests/settings.py
+++ b/django_q/tests/settings.py
@@ -104,7 +104,7 @@ LOGGING = {
 
 STATIC_URL = "/static/"
 
-REDIS_HOST = os.environ.get("REDIS_HOST", "redis")
+REDIS_HOST = os.environ.get("REDIS_HOST", "localhost")
 
 MONGO_HOST = os.environ.get("MONGO_HOST", "mongo")