From: Christopher Date: Tue, 17 Mar 2020 20:23:02 +0000 (-0500) Subject: don't filter all of the invocations X-Git-Url: http://git.entropealabs.com/?a=commitdiff_plain;h=eb7868c555393055719b7bd016f8bf23428cb95f;p=wampex.git don't filter all of the invocations --- diff --git a/lib/router/session.ex b/lib/router/session.ex index 0cd1023..30bcc59 100644 --- a/lib/router/session.ex +++ b/lib/router/session.ex @@ -495,14 +495,14 @@ defmodule Wampex.Router.Session do ) nil -> - Logger.error("No invocation for #{id} #{inspect(arg_kw)}") + Logger.error("No invocation in #{inspect(inv)} for #{id} #{inspect(arg_kw)}") :noop end inv = Enum.filter(inv, fn {_, %Invocation{request_id: ^id}, _} -> false - _ -> false + _ -> true end) {:ok, %SL{data | data: %Sess{data.data | invocations: inv}},