Move assertion to after config fetch
This commit is contained in:
parent
2261d51515
commit
5ac1ab359b
|
@ -16,7 +16,7 @@ func (s *Server) getCARoots(ws memdb.WatchSet, state *state.Store) (*structs.Ind
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
if config == nil {
|
if config == nil || config.ClusterID == "" {
|
||||||
return nil, fmt.Errorf("CA has not finished initializing")
|
return nil, fmt.Errorf("CA has not finished initializing")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,9 +29,6 @@ func (s *Server) getCARoots(ws memdb.WatchSet, state *state.Store) (*structs.Ind
|
||||||
// defensive.
|
// defensive.
|
||||||
return nil, fmt.Errorf("no cluster trust domain setup")
|
return nil, fmt.Errorf("no cluster trust domain setup")
|
||||||
}
|
}
|
||||||
if signingID.ClusterID == "" {
|
|
||||||
return nil, fmt.Errorf("CA has not finished initializing")
|
|
||||||
}
|
|
||||||
|
|
||||||
indexedRoots.TrustDomain = signingID.Host()
|
indexedRoots.TrustDomain = signingID.Host()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue