OMG IT ROFLSCALES NOW

This commit is contained in:
Kyle Drake 2014-09-16 22:09:25 -07:00
parent c93d0bbc7f
commit 3f8167dc17

View file

@ -61,7 +61,9 @@ if ENV['RACK_ENV'] == 'development'
module Worker
module ClassMethods
def perform_async(*args)
self.new.perform *args
Thread.new {
self.new.perform *args
}
end
end
end