From: Georgi Gerganov Date: Sun, 10 May 2026 19:00:18 +0000 (+0300) Subject: server : print warning when HTTP timeout exceeded (#22907) X-Git-Tag: upstream/0.0.10438~1337 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=389ff61d77b5c71cec0cf92fe4e5d01ace80b797;p=pkg%2Fggml%2Fsources%2Fllama.cpp server : print warning when HTTP timeout exceeded (#22907) --- diff --git a/tools/server/server-queue.cpp b/tools/server/server-queue.cpp index a2a026a12..d5fceb1b1 100644 --- a/tools/server/server-queue.cpp +++ b/tools/server/server-queue.cpp @@ -381,7 +381,8 @@ server_task_result_ptr server_response_reader::next(const std::function if (result == nullptr) { // timeout, check stop condition if (should_stop()) { - SRV_DBG("%s", "stopping wait for next result due to should_stop condition\n"); + SRV_WRN("%s", "stopping wait for next result due to should_stop condition (adjust the --timeout argument if needed)\n"); + SRV_WRN("%s", "ref: https://github.com/ggml-org/llama.cpp/pull/22907\n"); return nullptr; } } else {