logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 97c4d3bcc987b6e60c09ab6e2911661cf43051c3
parent 92992c022d454f9489ce54aa8f6189456435a48a
Author: Mark Felder <feld@feld.me>
Date:   Wed, 31 Jan 2024 13:12:56 -0500

Pleroma.Web.Plugs.RateLimiter.Supervisor: dialyzer error

lib/pleroma/web/plugs/rate_limiter/supervisor.ex:12:no_return
Function init/1 has no local return.

Diffstat:

Mlib/pleroma/web/plugs/rate_limiter/supervisor.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/web/plugs/rate_limiter/supervisor.ex b/lib/pleroma/web/plugs/rate_limiter/supervisor.ex @@ -14,7 +14,7 @@ defmodule Pleroma.Web.Plugs.RateLimiter.Supervisor do Pleroma.Web.Plugs.RateLimiter.LimiterSupervisor ] - opts = [strategy: :one_for_one, name: Pleroma.Web.Streamer.Supervisor] + opts = [strategy: :one_for_one] Supervisor.init(children, opts) end end