From c62eb87a0c3ff8cac2a4d9b0b32bfe8805c07360 Mon Sep 17 00:00:00 2001 From: phact Date: Tue, 14 Oct 2025 00:43:23 -0400 Subject: [PATCH] log upload response payload --- tests/integration/test_api_endpoints.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_api_endpoints.py b/tests/integration/test_api_endpoints.py index 009dcd47..1853bb8d 100644 --- a/tests/integration/test_api_endpoints.py +++ b/tests/integration/test_api_endpoints.py @@ -408,6 +408,7 @@ async def test_langflow_chat_and_nudges_endpoints(): upload_resp = await client.post("/router/upload_ingest", files=files) assert upload_resp.status_code in (201, 202), upload_resp.text payload = upload_resp.json() + print(f"[DEBUG] Upload response: {payload}") task_id = payload.get("task_id") if task_id: await _wait_for_task_completion(client, task_id)