ae: fix typo in constructor name

This commit is contained in:
Frank Schroeder 2017-10-19 11:20:24 +02:00
parent 1bb1a6787e
commit 29435004f6
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
3 changed files with 5 additions and 5 deletions

View File

@ -99,7 +99,7 @@ const (
retryFailIntv = 15 * time.Second
)
func NewStateSyner(state State, intv time.Duration, shutdownCh chan struct{}, logger *log.Logger) *StateSyncer {
func NewStateSyncer(state State, intv time.Duration, shutdownCh chan struct{}, logger *log.Logger) *StateSyncer {
s := &StateSyncer{
State: state,
Interval: intv,

View File

@ -29,7 +29,7 @@ func TestAE_scaleFactor(t *testing.T) {
func TestAE_Pause_nestedPauseResume(t *testing.T) {
t.Parallel()
l := NewStateSyner(nil, 0, nil, nil)
l := NewStateSyncer(nil, 0, nil, nil)
if l.Paused() != false {
t.Fatal("syncer should be unPaused after init")
}
@ -60,7 +60,7 @@ func TestAE_Pause_nestedPauseResume(t *testing.T) {
}
func TestAE_Pause_ResumeTriggersSyncChanges(t *testing.T) {
l := NewStateSyner(nil, 0, nil, nil)
l := NewStateSyncer(nil, 0, nil, nil)
l.Pause()
l.Resume()
select {
@ -74,7 +74,7 @@ func TestAE_Pause_ResumeTriggersSyncChanges(t *testing.T) {
}
func TestAE_Pause_ifNotPausedRun(t *testing.T) {
l := NewStateSyner(nil, 0, nil, nil)
l := NewStateSyncer(nil, 0, nil, nil)
errCalled := errors.New("f called")
f := func() error { return errCalled }

View File

@ -268,7 +268,7 @@ func (a *Agent) Start() error {
// create the state synchronization manager which performs
// regular and on-demand state synchronizations (anti-entropy).
a.sync = ae.NewStateSyner(a.State, c.AEInterval, a.shutdownCh, a.logger)
a.sync = ae.NewStateSyncer(a.State, c.AEInterval, a.shutdownCh, a.logger)
// create the config for the rpc server/client
consulCfg, err := a.consulConfig()