remove query timeouts

This commit is contained in:
rinpatch 2019-04-18 23:58:59 +03:00
parent 099f89367e
commit 945325013a
1 changed files with 8 additions and 6 deletions

View File

@ -30,15 +30,17 @@ defmodule Mix.Tasks.Pleroma.Database do
Common.start_pleroma()
Ecto.Adapters.SQL.query!(
Pleroma.Repo,
"update activities set data = jsonb_set(data, '{object}'::text[], data->'object'->'id') where data->'object'->>'id' is not null;"
Pleroma.Repo.query!(
"update activities set data = jsonb_set(data, '{object}'::text[], data->'object'->'id') where data->'object'->>'id' is not null;",
[],
timeout: :infinity
)
if Keyword.get(options, :vacuum) do
Ecto.Adapters.SQL.query!(
Pleroma.Repo,
"vacuum full;"
Pleroma.Repo.query!(
"vacuum full;",
[],
timeout: :infinity
)
end
end