Add sync.WaitGroup for proper error handling in Run()

This commit is contained in:
Herman Slatman 2021-03-26 16:21:02 +01:00 committed by max furman
parent 1cd0cb99f6
commit 03c472359c

View file

@ -8,6 +8,7 @@ import (
"net/http"
"net/url"
"reflect"
"sync"
"github.com/go-chi/chi"
"github.com/pkg/errors"
@ -251,7 +252,29 @@ func (ca *CA) Init(config *config.Config) (*CA, error) {
// Run starts the CA calling to the server ListenAndServe method.
func (ca *CA) Run() error {
return ca.srv.ListenAndServe()
var wg sync.WaitGroup
errors := make(chan error, 1)
if ca.insecureSrv != nil {
wg.Add(1)
go func() {
defer wg.Done()
errors <- ca.insecureSrv.ListenAndServe()
}()
}
wg.Add(1)
go func() {
defer wg.Done()
errors <- ca.srv.ListenAndServe()
}()
// wait till error occurs; ensures the servers keep listening
err := <-errors
wg.Wait()
return err
}
// Stop stops the CA calling to the server Shutdown method.