Skip to content

Commit 98ded63

Browse files
authored
Change the redis (#465)
1 parent adf292b commit 98ded63

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

miss_islington/tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
app = celery.Celery("backport_cpython")
1717

1818
app.conf.update(
19-
BROKER_URL=os.environ["HEROKU_REDIS_MAROON_TLS_URL"],
20-
CELERY_RESULT_BACKEND=os.environ["HEROKU_REDIS_MAROON_TLS_URL"],
19+
BROKER_URL=os.environ["HEROKU_REDIS_MAROON_URL"],
20+
CELERY_RESULT_BACKEND=os.environ["HEROKU_REDIS_MAROON_URL"],
2121
)
2222

2323
cache = cachetools.LRUCache(maxsize=500)

tests/test_backport_pr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import redis
88
import kombu
99

10-
os.environ["HEROKU_REDIS_MAROON_TLS_URL"] = "someurl"
10+
os.environ["HEROKU_REDIS_MAROON_URL"] = "someurl"
1111

1212
from miss_islington import backport_pr
1313

0 commit comments

Comments
 (0)