Skip to content

Commit

Permalink
Ignore extra kwargs on perform() in WebhooksManagerJob
Browse files Browse the repository at this point in the history
  • Loading branch information
minichate committed Jul 6, 2022
1 parent 1024824 commit f87a273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/shopify_app/jobs/webhooks_manager_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class WebhooksManagerJob < ActiveJob::Base
ShopifyApp.configuration.webhooks_manager_queue_name
end

def perform(shop_domain:, shop_token:)
def perform(shop_domain:, shop_token:, **)
ShopifyAPI::Auth::Session.temp(shop: shop_domain, access_token: shop_token) do |session|
WebhooksManager.create_webhooks(session: session)
end
Expand Down

0 comments on commit f87a273

Please sign in to comment.