logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: d8d819ddc77a12d6c83c75c95d8e658e77e353c6
parent fee2260633987c6ebe17437e612f315a30612ba8
Author: feld <feld@feld.me>
Date:   Thu,  7 Oct 2021 20:02:41 +0000

Merge branch 'typo' into 'develop'

Fix typo

See merge request pleroma/pleroma!3528

Diffstat:

Mlib/pleroma/maintenance.ex4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/pleroma/maintenance.ex b/lib/pleroma/maintenance.ex @@ -9,7 +9,7 @@ defmodule Pleroma.Maintenance do def vacuum(args) do case args do "analyze" -> - Logger.info("Runnning VACUUM ANALYZE.") + Logger.info("Running VACUUM ANALYZE.") Repo.query!( "vacuum analyze;", @@ -18,7 +18,7 @@ defmodule Pleroma.Maintenance do ) "full" -> - Logger.info("Runnning VACUUM FULL.") + Logger.info("Running VACUUM FULL.") Logger.warn( "Re-packing your entire database may take a while and will consume extra disk space during the process."