Skip to content

Commit 6abcb6b

Browse files
committed
fix requests.get
1 parent 075bd52 commit 6abcb6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: mcp_server/utils/request.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async def get_slce_api(path: str) -> str:
2121

2222
try:
2323
async with AsyncClient(verify=False) as client:
24-
response = await client.get(f"{GLOBAL_CONFIG.SAFELINE_ADDRESS}{path}", json=req_body, headers={
24+
response = await client.get(f"{GLOBAL_CONFIG.SAFELINE_ADDRESS}{path}", headers={
2525
"X-SLCE-API-TOKEN": f"{GLOBAL_CONFIG.SAFELINE_API_TOKEN}"
2626
})
2727
return check_slce_response(response)

0 commit comments

Comments
 (0)