mirror of https://github.com/status-im/consul.git
ensure that we plumb our configured logger into all parts of the raft library
This commit is contained in:
parent
2c983902be
commit
88bb53d001
|
@ -461,8 +461,7 @@ func NewServerLogger(config *Config, logger *log.Logger, tokens *token.Store) (*
|
|||
s.Shutdown()
|
||||
return nil, err
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Initialize Autopilot. This must happen before starting leadership monitoring
|
||||
// as establishing leadership could attempt to use autopilot and cause a panic.
|
||||
s.initAutopilot(config)
|
||||
|
@ -514,6 +513,7 @@ func (s *Server) setupRaft() error {
|
|||
MaxPool: 3,
|
||||
Timeout: 10 * time.Second,
|
||||
ServerAddressProvider: serverAddressProvider,
|
||||
Logger: s.logger,
|
||||
}
|
||||
|
||||
trans := raft.NewNetworkTransportWithConfig(transConfig)
|
||||
|
|
Loading…
Reference in New Issue