Clean up CA shutdown logic and error

This commit is contained in:
Kyle Havlovitz 2020-09-15 12:28:58 -07:00 committed by Mike Morris
parent 9496780ab4
commit 57a98945f5
2 changed files with 7 additions and 7 deletions

View File

@ -126,7 +126,7 @@ func (v *VaultProvider) renewToken(ctx context.Context, renewer *vaultapi.Renewe
case err := <-renewer.DoneCh():
if err != nil {
v.logger.Error(fmt.Sprintf("Error renewing token for Vault provider: %v", err))
v.logger.Error("Error renewing token for Vault provider", "error", err)
}
// Renewer routine has finished, so start it again.

View File

@ -566,20 +566,20 @@ func (s *Server) startConnectLeader() {
// stopConnectLeader stops connect specific leader functions.
func (s *Server) stopConnectLeader() {
s.caProviderReconfigurationLock.Lock()
defer s.caProviderReconfigurationLock.Unlock()
s.leaderRoutineManager.Stop(secondaryCARootWatchRoutineName)
s.leaderRoutineManager.Stop(intentionReplicationRoutineName)
s.leaderRoutineManager.Stop(caRootPruningRoutineName)
s.stopConnectLeaderEnterprise()
// If the provider implements NeedsStop, we call Stop to perform any shutdown actions.
s.caProviderReconfigurationLock.Lock()
defer s.caProviderReconfigurationLock.Unlock()
provider, _ := s.getCAProvider()
if provider != nil {
if needsStop, ok := provider.(ca.NeedsStop); ok {
needsStop.Stop()
}
}
s.leaderRoutineManager.Stop(secondaryCARootWatchRoutineName)
s.leaderRoutineManager.Stop(intentionReplicationRoutineName)
s.leaderRoutineManager.Stop(caRootPruningRoutineName)
}
func (s *Server) runCARootPruning(ctx context.Context) error {