mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
The restful API default timeout was hard-coded. This PR make this timeout value configurable via paramtable. --------- Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
10 lines
232 B
Go
10 lines
232 B
Go
package http
|
|
|
|
const (
|
|
HTTPHeaderAllowInt64 = "Accept-Type-Allow-Int64"
|
|
HTTPHeaderRequestTimeout = "Request-Timeout"
|
|
HTTPReturnCode = "code"
|
|
HTTPReturnMessage = "message"
|
|
HTTPReturnData = "data"
|
|
)
|