Skip to content

Commit

Permalink
chore: increase slow database check value
Browse files Browse the repository at this point in the history
Apparently getting slightly above 100 ms is usual under heavy load.
  • Loading branch information
nijel committed Dec 4, 2024
1 parent 7dc894d commit 5607205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weblate/utils/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def check_database(

try:
delta = measure_database_latency()
if delta > 100:
if delta > 120:
errors.append(
weblate_check(
"weblate.C038",
Expand Down

0 comments on commit 5607205

Please sign in to comment.