forked from AkkomaGang/akkoma
Merge branch 'fix/prune-objects-times-out' into 'develop'
Disable timeouts for object pruning query See merge request pleroma/pleroma!1193
This commit is contained in:
commit
0b4f569c5b
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ def run(["prune_objects" | args]) do
|
||||||
where:
|
where:
|
||||||
fragment("split_part(?->>'actor', '/', 3) != ?", o.data, ^Pleroma.Web.Endpoint.host())
|
fragment("split_part(?->>'actor', '/', 3) != ?", o.data, ^Pleroma.Web.Endpoint.host())
|
||||||
)
|
)
|
||||||
|> Repo.delete_all()
|
|> Repo.delete_all(timeout: :infinity)
|
||||||
|
|
||||||
if Keyword.get(options, :vacuum) do
|
if Keyword.get(options, :vacuum) do
|
||||||
Logger.info("Runnning VACUUM FULL")
|
Logger.info("Runnning VACUUM FULL")
|
||||||
|
|
Loading…
Reference in a new issue