Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions discovery-provider/src/queries/health_check.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -104,8 +104,8 @@ def health_check():

verbose = request.args.get("verbose", type=str) == 'true'
if verbose:
# DB check
health_results["db"] = _get_db_conn_state()
# DB connections check
health_results["db_connections"] = _get_db_conn_state()

if health_results["block_difference"] > 20:
return jsonify(health_results), 500
Expand Down