Skip to content

Commit

Permalink
build(deps): updates to latest tower
Browse files Browse the repository at this point in the history
  • Loading branch information
grzuy committed Oct 15, 2024
1 parent 11cb1e9 commit 98522ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ try do
# possibly crashing code
rescue
exception ->
Tower.handle_exception(exception, __STACKTRACE__)
Tower.report_exception(exception, __STACKTRACE__)
end
```

Expand Down
2 changes: 1 addition & 1 deletion test/tower_rollbar_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ defmodule TowerRollbarTest do
|> Plug.Conn.resp(200, Jason.encode!(%{"ok" => true}))
end)

Tower.handle_message(:info, "something interesting happened")
Tower.report_message(:info, "something interesting happened")

Check warning on line 460 in test/tower_rollbar_test.exs

View workflow job for this annotation

GitHub Actions / main (1.15, 25.3.2.12, plug_1_15)

Tower.report_message/2 is undefined or private

Check warning on line 460 in test/tower_rollbar_test.exs

View workflow job for this annotation

GitHub Actions / main (1.15, 24.3.4.17, plug_1_14)

Tower.report_message/2 is undefined or private

assert_receive({^ref, :sent}, 500)
end
Expand Down

0 comments on commit 98522ee

Please sign in to comment.