Skip to content

Commit

Permalink
fix dialyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasJ committed Oct 7, 2024
1 parent a384247 commit 68e4c0e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/subscription/batcher.ex
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,10 @@ defmodule AshGraphql.Subscription.Batcher do
[]
end

{:error, error} ->
{:error, {_method, error}, _phase} ->
raise Ash.Error.to_error_class(error)

{:error, error, _phase} ->
raise Ash.Error.to_error_class(error)
end

Expand Down

0 comments on commit 68e4c0e

Please sign in to comment.