commit: dcd010280034fd35254906831402d96fd59f8098
parent cca9d6aeaad6dbfd36becd4c073e153a31e58f21
Author: Mark Felder <feld@feld.me>
Date: Sat, 20 Jan 2024 19:39:13 -0500
Credo
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/pleroma/application.ex b/lib/pleroma/application.ex
@@ -208,7 +208,7 @@ defmodule Pleroma.Application do
defp shout_enabled?, do: Config.get([:shout, :enabled])
- defp streamer_registry() do
+ defp streamer_registry do
if Application.get_env(:pleroma, __MODULE__)[:streamer_registry] do
[
{Registry,
@@ -243,7 +243,7 @@ defmodule Pleroma.Application do
defp shout_child(_), do: []
- defp task_children() do
+ defp task_children do
children = [
%{
id: :web_push_init,
@@ -279,7 +279,7 @@ defmodule Pleroma.Application do
end
end
- defp http_children_hackney() do
+ defp http_children_hackney do
pools = [:federation, :media]
pools =
@@ -295,7 +295,7 @@ defmodule Pleroma.Application do
end
end
- defp http_children_gun() do
+ defp http_children_gun do
Pleroma.Gun.ConnectionPool.children() ++
[{Task, &Pleroma.HTTP.AdapterHelper.Gun.limiter_setup/0}]
end