fix after rebase

This commit is contained in:
Alexander Strizhakov 2021-03-15 16:37:35 +03:00
parent 7e10166065
commit 5cf99f713a
No known key found for this signature in database
GPG Key ID: 022896A53AEF1381

View File

@ -75,7 +75,7 @@ defmodule Pleroma.Application.StartUpDependencies do
]
|> add_cachex_deps()
|> maybe_add_init_internal_fetch_actor_task(env)
|> maybe_add_backgroud_migrator()
|> maybe_add_background_migrator(env)
|> start_while(fun)
end
@ -166,7 +166,7 @@ defmodule Pleroma.Application.StartUpDependencies do
defp maybe_add_background_migrator(children, env) when env in [:test, :benchmark], do: children
defp maybe_add_backgroud_migrator(children, _) do
defp maybe_add_background_migrator(children, _) do
[Pleroma.Migrators.HashtagsTableMigrator | children]
end