I'm developing an application using the Shopify API Gem (which uses ActiveResource) and Delayed_Job. But I'm running into an error I can't debug. Basically, the method that I'm using Delayed_Job's handle_asynchronously on reports the following when the worker tries to execute the job:
[1m[35m (0.4ms)[0m UPDATE "delayed_jobs" SET "locked_at" = NULL, "locked_by" = NULL, "last_error" = '{Missing site URI
/activeresource-3.1.3/lib/active_resource/connection.rb:34:in `initialize''
/activeresource-3.1.3/lib/active_resource/base.rb:550:in `new''
/activeresource-3.1.3/lib/active_resource/base.rb:550:in `connection''
/activeresource-3.1.3/lib/active_resource/base.rb:559:in `connection''
/activeresource-3.1.3/lib/active_resource/base.rb:559:in `connection''
/activeresource-3.1.3/lib/active_resource/base.rb:926:in `find_single''
/activeresource-3.1.3/lib/active_resource/base.rb:818:in `find''
/app/models/sale.rb:11:in `start_sale''
As you can see, the error occurs in the start_sale method - which is what the job executes. Here's what that looks like:
def start_sale
#set the base site to be the shop's api url
ActiveResource::Base.site = "https://**secret**:**key**@somestore.myshopify.com/admin"
sale = ShopifyAPI::Variant.find(self.variant)
sale.price = self.price
sale.save
end
handle_asynchronously :start_sale, :run_at => Proc.new { 10.seconds.from_now }
So it seems like site isn't properly getting set, but I'm not sure why. Any ideas as to what could be causing the issue?