We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adf292b commit 98ded63Copy full SHA for 98ded63
miss_islington/tasks.py
@@ -16,8 +16,8 @@
16
app = celery.Celery("backport_cpython")
17
18
app.conf.update(
19
- BROKER_URL=os.environ["HEROKU_REDIS_MAROON_TLS_URL"],
20
- CELERY_RESULT_BACKEND=os.environ["HEROKU_REDIS_MAROON_TLS_URL"],
+ BROKER_URL=os.environ["HEROKU_REDIS_MAROON_URL"],
+ CELERY_RESULT_BACKEND=os.environ["HEROKU_REDIS_MAROON_URL"],
21
)
22
23
cache = cachetools.LRUCache(maxsize=500)
tests/test_backport_pr.py
@@ -7,7 +7,7 @@
7
import redis
8
import kombu
9
10
-os.environ["HEROKU_REDIS_MAROON_TLS_URL"] = "someurl"
+os.environ["HEROKU_REDIS_MAROON_URL"] = "someurl"
11
12
from miss_islington import backport_pr
13
0 commit comments