some cleanup

This commit is contained in:
Shlomi Noach 2016-12-24 10:01:03 +02:00
parent e50361ab61
commit 6128076485

View File

@ -76,8 +76,6 @@ type Migrator struct {
copyRowsQueue chan tableWriteFunc
applyEventsQueue chan tableWriteFunc
handledChangelogStates map[string]bool
contextDumpFiles []string
panicAbort chan error
}
@ -92,9 +90,7 @@ func NewMigrator() *Migrator {
copyRowsQueue: make(chan tableWriteFunc),
applyEventsQueue: make(chan tableWriteFunc, applyEventsQueueBuffer),
handledChangelogStates: make(map[string]bool),
contextDumpFiles: []string{},
panicAbort: make(chan error),
}
return migrator