(forcedSchemas string)
| 93 | } |
| 94 | |
| 95 | func selectModifiedSchemas(forcedSchemas string) []string { |
| 96 | if len(forcedSchemas) > 0 { |
| 97 | return strings.Split(forcedSchemas, ",") |
| 98 | } |
| 99 | return migration.GetModifiedSchemas() |
| 100 | } |
| 101 | |
| 102 | func emitPostMigrateEvent(forcedSchemas string, syncETCDEvent bool, postMigrationEventTimeout time.Duration) { |
| 103 | config := util.GetConfig() |
no outgoing calls
no test coverage detected