diff --git a/lib/redix/pubsub/fastlane/server.ex b/lib/redix/pubsub/fastlane/server.ex index daa5f79..ce79b1e 100644 --- a/lib/redix/pubsub/fastlane/server.ex +++ b/lib/redix/pubsub/fastlane/server.ex @@ -110,11 +110,6 @@ defmodule Redix.PubSub.Fastlane.Server do {:noreply, %{ state | connected: false }} end - def handle_cast({:punsubscribe, [pattern], _}, state) do - IO.inspect pattern - {:noreply, %{ state | connected: false }} - end - def handle_info({:redix_pubsub, redix_pid, operation, _}, %{redix_pid: redix_pid} = state) when operation in @subscribed_callbacks do {:noreply, state} end diff --git a/mix.exs b/mix.exs index 02fa2ca..03e1aae 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule RedixPubsubFastlane.Mixfile do use Mix.Project @project_url "https://github.com/merqlove/redix_pubsub_fastlane" - @version "0.1.3" + @version "0.1.4" def project do [app: :redix_pubsub_fastlane,