Merge remote-tracking branch 'upstream/develop' into restrict-domain
[akkoma] / lib / pleroma / gun / connection_pool / reclaimer.ex
index 1793ac3ee6c37146f9a249573e33cccb0ea9f750..241e8b04f47677bf19908d2c1eafd3c3c02d7d17 100644 (file)
@@ -1,9 +1,13 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Gun.ConnectionPool.Reclaimer do
   use GenServer, restart: :temporary
 
   @registry Pleroma.Gun.ConnectionPool
 
-  def start_monitor() do
+  def start_monitor do
     pid =
       case :gen_server.start(__MODULE__, [], name: {:via, Registry, {@registry, "reclaimer"}}) do
         {:ok, pid} ->