Samuel de Framond

Results 3 comments of Samuel de Framond

https://github.com/crowdint/rails3-jquery-autocomplete/issues/128#issuecomment-4572553

Are you raising `Resque::Job::DontPerform` in any of your `before_perform` hooks? I am having a similar issue and I think this is the cause.

I finally used this workaround that seems to work fine for my case. Instead of raising directly `Resque::Job::DontPerform` I call: ``` ruby class MyJob extend Resque::Plugins::Lock def self.raise_dont_perform(*args) # Release...