From 44bc03ee242977aa44dfcfd98b97f54abf23829a Mon Sep 17 00:00:00 2001 From: gmega Date: Thu, 23 Jan 2025 10:18:19 -0300 Subject: [PATCH] fix: readiness API verb --- benchmarks/deluge/agent/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/deluge/agent/api.py b/benchmarks/deluge/agent/api.py index 1746cf7..85e883d 100644 --- a/benchmarks/deluge/agent/api.py +++ b/benchmarks/deluge/agent/api.py @@ -15,7 +15,7 @@ def deluge_agent() -> DelugeAgent: raise Exception("Dependency must be set") -@router.post("/api/v1/hello") +@router.get("/api/v1/hello") def hello(): return {"message": "Server is up"}