mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
a7eecb1be0
Signed-off-by: PowderLi <min.li@zilliz.com>
37 lines
865 B
Go
37 lines
865 B
Go
package paramtable
|
|
|
|
type httpConfig struct {
|
|
Enabled ParamItem `refreshable:"false"`
|
|
DebugMode ParamItem `refreshable:"false"`
|
|
Port ParamItem `refreshable:"false"`
|
|
}
|
|
|
|
func (p *httpConfig) init(base *BaseTable) {
|
|
p.Enabled = ParamItem{
|
|
Key: "proxy.http.enabled",
|
|
DefaultValue: "true",
|
|
Version: "2.1.0",
|
|
Doc: "Whether to enable the http server",
|
|
Export: true,
|
|
}
|
|
p.Enabled.Init(base.mgr)
|
|
|
|
p.DebugMode = ParamItem{
|
|
Key: "proxy.http.debug_mode",
|
|
DefaultValue: "false",
|
|
Version: "2.1.0",
|
|
Doc: "Whether to enable http server debug mode",
|
|
Export: true,
|
|
}
|
|
p.DebugMode.Init(base.mgr)
|
|
|
|
p.Port = ParamItem{
|
|
Key: "proxy.http.port",
|
|
Version: "2.1.0",
|
|
Doc: "high-level restful api",
|
|
PanicIfEmpty: false,
|
|
Export: true,
|
|
}
|
|
p.Port.Init(base.mgr)
|
|
}
|