mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-02-02 16:28:39 +08:00
chore: pass by value for config in dev server (#2712)
This commit is contained in:
parent
c4f8eca459
commit
f0d1722bbd
@ -19,13 +19,13 @@ var once sync.Once
|
|||||||
// Server is inner http server, expose some useful observability information of app.
|
// Server is inner http server, expose some useful observability information of app.
|
||||||
// For example health check, metrics and pprof.
|
// For example health check, metrics and pprof.
|
||||||
type Server struct {
|
type Server struct {
|
||||||
config *Config
|
config Config
|
||||||
server *http.ServeMux
|
server *http.ServeMux
|
||||||
routes []string
|
routes []string
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewServer returns a new inner http Server.
|
// NewServer returns a new inner http Server.
|
||||||
func NewServer(config *Config) *Server {
|
func NewServer(config Config) *Server {
|
||||||
return &Server{
|
return &Server{
|
||||||
config: config,
|
config: config,
|
||||||
server: http.NewServeMux(),
|
server: http.NewServeMux(),
|
||||||
@ -76,7 +76,7 @@ func (s *Server) StartAsync() {
|
|||||||
func StartAgent(c Config) {
|
func StartAgent(c Config) {
|
||||||
once.Do(func() {
|
once.Do(func() {
|
||||||
if c.Enabled {
|
if c.Enabled {
|
||||||
s := NewServer(&c)
|
s := NewServer(c)
|
||||||
s.StartAsync()
|
s.StartAsync()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user