server: bump timeout to 3600s (#23842)

* server: bump timeout to 3600s

* nits: change wording
This commit is contained in:
Xuan-Son Nguyen
2026-05-29 10:23:17 +02:00
committed by GitHub
parent 1f0aa2a696
commit cb47092b00
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -587,7 +587,7 @@ struct common_params {
// server params
int32_t port = 8080; // server listens on this network port
bool reuse_port = false; // allow multiple sockets to bind to the same port
int32_t timeout_read = 600; // http read timeout in seconds
int32_t timeout_read = 3600; // http read timeout in seconds
int32_t timeout_write = timeout_read; // http write timeout in seconds
int32_t n_threads_http = -1; // number of threads to process HTTP requests (TODO: support threadpool)
int32_t n_cache_reuse = 0; // min chunk size to reuse from the cache via KV shifting