Skip to content

Commit

Permalink
Smoke tester data fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jerodsanto committed Jan 15, 2024
1 parent 773a077 commit 49e3393
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/changelog/oban_workers/smoke_tester.ex
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ defmodule Changelog.ObanWorkers.SmokeTester do

def test_shopify_integration do
case Shopify.Order.count(Shopify.session()) do
{:error, response} -> report("shopify_failure", response)
{:error, response} ->
info = Map.take(response, [:code, :data])
report("shopify_failure", info)
{:ok, _response} -> :ok
end
end
Expand Down

0 comments on commit 49e3393

Please sign in to comment.