forked from TrueCloudLab/certificates
Add sync.WaitGroup for proper error handling in Run()
This commit is contained in:
parent
1cd0cb99f6
commit
03c472359c
1 changed files with 24 additions and 1 deletions
25
ca/ca.go
25
ca/ca.go
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue