milvus/pkg/util/paramtable/http_param.go
jaime c9d0c157ec
Move some modules from internal to public package (#22572)
Signed-off-by: jaime <yun.zhang@zilliz.com>
2023-04-06 19:14:32 +08:00

27 lines
627 B
Go

package paramtable
type httpConfig struct {
Enabled ParamItem `refreshable:"false"`
DebugMode 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)
}