mirror of https://github.com/zulip/zulip.git
health: Disable RabbitMQ check if not USING_RABBITMQ.
Fixes a spurious error that’s logged and ignored during the Puppeteer
tests, introduced by commit eef65d7e30
(#31438).
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
723346b05c
commit
ff97788b6e
|
@ -1,3 +1,4 @@
|
|||
from django.conf import settings
|
||||
from django.db.migrations.recorder import MigrationRecorder
|
||||
from django.http import HttpRequest, HttpResponse
|
||||
from django.utils.crypto import get_random_string
|
||||
|
@ -58,7 +59,8 @@ def check_memcached() -> None:
|
|||
|
||||
def health(request: HttpRequest) -> HttpResponse:
|
||||
check_database()
|
||||
check_rabbitmq()
|
||||
if settings.USING_RABBITMQ: # nocoverage
|
||||
check_rabbitmq()
|
||||
check_redis()
|
||||
check_memcached()
|
||||
|
||||
|
|
Loading…
Reference in New Issue