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 8bff8a8 commit dd4a286Copy full SHA for dd4a286
backend/backend/apis/bwwc.py
@@ -308,7 +308,7 @@ def backup(req: HttpRequest) -> HttpResponse:
308
def mongo_health(req: HttpRequest) -> HttpResponse:
309
if req.method == "GET":
310
if not engine.is_mongodb_running():
311
- return HttpResponseBadRequest("MongoDB is down")
+ return HttpResponseBadRequest(f"MongoDB is down at: {engine.mongo_uri}")
312
else:
313
return HttpResponse("MongoDB is up")
314
0 commit comments