diff options
author | lain <lain@soykaf.club> | 2020-04-14 13:07:57 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-04-14 13:07:57 +0000 |
commit | 5fc6ce30ac7c5e4d7e96bad22e6789cb2040fdbd (patch) | |
tree | 67f0cbae0c32448e7615b6f3347ef86966d04f84 | |
parent | 2eae5793cdaa693c120db73a2dd6b0260e401dc8 (diff) | |
parent | f3725b8fc4506e4bb400878214b9886ed954590f (diff) | |
download | pleroma-5fc6ce30ac7c5e4d7e96bad22e6789cb2040fdbd.tar.gz |
Merge branch 'chore/spelling' into 'develop'
Fix spelling in log message
See merge request pleroma/pleroma!2378
-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 |