diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-04-13 17:04:43 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-04-13 17:04:43 -0500 |
commit | f3725b8fc4506e4bb400878214b9886ed954590f (patch) | |
tree | e4c082721759144c253be0ffe255f48362c09bbe | |
parent | e3db1c471e2f52a5bbdc854b594fa08342edf181 (diff) | |
download | pleroma-f3725b8fc4506e4bb400878214b9886ed954590f.tar.gz |
Fix spelling
-rw-r--r-- | lib/pleroma/pool/connections.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/pool/connections.ex b/lib/pleroma/pool/connections.ex index 4d4ba913c..acafe1bea 100644 --- a/lib/pleroma/pool/connections.ex +++ b/lib/pleroma/pool/connections.ex @@ -243,7 +243,7 @@ defmodule Pleroma.Pool.Connections do @impl true def handle_info({:DOWN, _ref, :process, conn_pid, reason}, state) do - Logger.debug("received DOWM message for #{inspect(conn_pid)} reason -> #{inspect(reason)}") + Logger.debug("received DOWN message for #{inspect(conn_pid)} reason -> #{inspect(reason)}") state = with {key, conn} <- find_conn(state.conns, conn_pid) do |