removed comments code

This commit is contained in:
Денис Евстигнеев 2024-03-07 18:17:07 +03:00
parent 41d7d145ce
commit 49608197d0
1 changed files with 0 additions and 19 deletions

19
http.go
View File

@ -408,7 +408,6 @@ func (h *Server) Start() error {
h.Unlock()
var handler http.Handler
//var srvFunc func(net.Listener) error
// nolint: nestif
if h.opts.Context != nil {
@ -462,7 +461,6 @@ func (h *Server) Start() error {
var ok bool
if hs, ok = h.opts.Context.Value(serverKey{}).(*http.Server); ok && hs != nil {
hs.Handler = fn
//srvFunc = hs.Serve
} else {
hs = &http.Server{Handler: fn}
}
@ -474,23 +472,6 @@ func (h *Server) Start() error {
}
}()
/*
if srvFunc != nil {
go func() {
if cerr := srvFunc(ts); cerr != nil && !errors.Is(cerr, net.ErrClosed) {
h.opts.Logger.Error(h.opts.Context, cerr)
}
}()
} else {
go func() {
if cerr := http.Serve(ts, fn); cerr != nil && !errors.Is(cerr, net.ErrClosed) {
h.opts.Logger.Error(h.opts.Context, cerr)
}
}()
}
*/
go func() {
t := new(time.Ticker)