()
| 2730 | } |
| 2731 | |
| 2732 | func (s *HTTPServers) Close() { |
| 2733 | if s.HTTPListener != nil { |
| 2734 | _ = s.HTTPListener.Close() |
| 2735 | } |
| 2736 | if s.TLSListener != nil { |
| 2737 | _ = s.TLSListener.Close() |
| 2738 | } |
| 2739 | } |
| 2740 | |
| 2741 | func ConfigureTraceProvider( |
| 2742 | ctx context.Context, |
no test coverage detected