summaryrefslogtreecommitdiff
path: root/src/collector
diff options
context:
space:
mode:
Diffstat (limited to 'src/collector')
-rw-r--r--src/collector/healthcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/collector/healthcheck.py b/src/collector/healthcheck.py
index 7d336fd..0b9b0e5 100644
--- a/src/collector/healthcheck.py
+++ b/src/collector/healthcheck.py
@@ -25,7 +25,7 @@ def check_collector() -> bool:
return False
data = json.loads(req.text)
- if isinstance(data["estimated document count"], int) and data["estimated document count"] >= 0:
+ if isinstance(data["Estimated document count"], int) and data["Estimated document count"] >= 0:
return req.status_code == 200
return False