diff --git a/internal/app/app.go b/internal/app/app.go index b878c83f..0b96665c 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -38,7 +38,7 @@ type App struct { daemonMutex sync.Mutex replRepairState map[string]*ReplicationRepairState externalReplication mysql.IExternalReplication - switchHelper mysql.ISwitchHelper + switchHelper mysql.ISwitchHelper } // NewApp returns new App. Suddenly. @@ -72,7 +72,7 @@ func NewApp(configFile, logLevel string, interactive bool) (*App, error) { streamFromFailedAt: make(map[string]time.Time), replRepairState: make(map[string]*ReplicationRepairState), externalReplication: externalReplication, - switchHelper: switchHelper, + switchHelper: switchHelper, } return app, nil }