Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzon committed Feb 7, 2025
1 parent be40e1d commit 67f0d60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fractal_healthcheck/checks/implementations.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def memory_usage() -> CheckResult:
log = {
"Total memory": f"{mem_usage_total} GB",
"Free memory": f"{mem_usage_available} GB",
"Percent": f"{mem_usage_percent} GB",
"Percent": f"{mem_usage_percent}",
}
return CheckResult(
log=f"The memory usage is {mem_usage_percent}%, while the threashold is {MAX_MEMORY_USAGE}%\n {json.dumps(log, indent=2)}",
Expand Down

0 comments on commit 67f0d60

Please sign in to comment.