mirror of https://github.com/k3s-io/k3s
Merge pull request #28937 from ping035627/ping035627-patch-0714
Automatic merge from submit-queue Optimise the New function in genericapiserver.go It needn't the handlerContainer variable in the "New" function when deal s.HandlerContainer, I think, and it seems the codes more concise.pull/6/head
commit
c481291320
|
@ -372,16 +372,14 @@ func New(c *Config) (*GenericAPIServer, error) {
|
||||||
apiGroupsForDiscovery: map[string]unversioned.APIGroup{},
|
apiGroupsForDiscovery: map[string]unversioned.APIGroup{},
|
||||||
}
|
}
|
||||||
|
|
||||||
var handlerContainer *restful.Container
|
|
||||||
if c.RestfulContainer != nil {
|
if c.RestfulContainer != nil {
|
||||||
s.mux = c.RestfulContainer.ServeMux
|
s.mux = c.RestfulContainer.ServeMux
|
||||||
handlerContainer = c.RestfulContainer
|
s.HandlerContainer = c.RestfulContainer
|
||||||
} else {
|
} else {
|
||||||
mux := http.NewServeMux()
|
mux := http.NewServeMux()
|
||||||
s.mux = mux
|
s.mux = mux
|
||||||
handlerContainer = NewHandlerContainer(mux, c.Serializer)
|
s.HandlerContainer = NewHandlerContainer(mux, c.Serializer)
|
||||||
}
|
}
|
||||||
s.HandlerContainer = handlerContainer
|
|
||||||
// Use CurlyRouter to be able to use regular expressions in paths. Regular expressions are required in paths for example for proxy (where the path is proxy/{kind}/{name}/{*})
|
// Use CurlyRouter to be able to use regular expressions in paths. Regular expressions are required in paths for example for proxy (where the path is proxy/{kind}/{name}/{*})
|
||||||
s.HandlerContainer.Router(restful.CurlyRouter{})
|
s.HandlerContainer.Router(restful.CurlyRouter{})
|
||||||
s.MuxHelper = &apiserver.MuxHelper{Mux: s.mux, RegisteredPaths: []string{}}
|
s.MuxHelper = &apiserver.MuxHelper{Mux: s.mux, RegisteredPaths: []string{}}
|
||||||
|
|
Loading…
Reference in New Issue