Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/gel/connection.ex
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ defmodule Gel.Connection do

other ->
message = "unexpected message from socket received during ping: #{inspect(other)}"
{:disconect, Gel.InternalClientError.new(message), state}
{:disconnect, Gel.InternalClientError.new(message), state}
after
0 ->
:ssl.setopts(state.socket, active: false)
Expand Down Expand Up @@ -1548,7 +1548,7 @@ defmodule Gel.Connection do
"unexpected Gel message received during ping: #{inspect(message)}"
)

{:disconect, exc, state}
{:disconnect, exc, state}
end

# if we haven't received state ID from Gel then pretend state is default
Expand Down