diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-06-06 19:19:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-06 19:19:59 +0300 |
commit | ee459f40f65810a810151b24eba5b8bd174ceffe (patch) | |
tree | b845384364c74201816c3f02f63158cd3d751d1c /common/common.h | |
parent | f83351f9a62a6262f1fc3d08f320033089cddfb5 (diff) |
server : fix --threads-http arg (#7801)
Diffstat (limited to 'common/common.h')
-rw-r--r-- | common/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/common.h b/common/common.h index de6238e2..35f5311e 100644 --- a/common/common.h +++ b/common/common.h @@ -184,7 +184,7 @@ struct gpt_params { int32_t port = 8080; // server listens on this network port int32_t timeout_read = 600; // 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 use for http server (-1 = use n_threads) + int32_t n_threads_http = -1; // number of threads to process HTTP requests std::string hostname = "127.0.0.1"; std::string public_path = ""; |