Skip to content

Commit

Permalink
Fix: query!/4 should dispatch :query! (#1122)
Browse files Browse the repository at this point in the history
  • Loading branch information
preciz committed Jul 27, 2024
1 parent baf6851 commit 3fc4dd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/oban/repo.ex
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ defmodule Oban.Repo do
"""
@doc since: "2.17.0"
def query!(conf, statement, params \\ [], opts \\ []) do
__dispatch__(:query, [conf, statement, params], opts)
__dispatch__(:query!, [conf, statement, params], opts)
end

@doc """
Expand Down

0 comments on commit 3fc4dd0

Please sign in to comment.