You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You might want to change
@@dj = (defined? Delayed) == "constant" && (instance_methods.include? 'send_later') #this means Delayed_job exists , so make use of asynchronous delivery of pfeed
to
@@dj = (defined? Delayed) == "constant" && (instance_methods.include? :send_later) #this means Delayed_job exists , so make use of asynchronous delivery of pfeed
in line 45 of app/models/pfeed_item.rb. Was necessary for rails3.
The text was updated successfully, but these errors were encountered:
You might want to change
@@dj = (defined? Delayed) == "constant" && (instance_methods.include? 'send_later') #this means Delayed_job exists , so make use of asynchronous delivery of pfeed
to
@@dj = (defined? Delayed) == "constant" && (instance_methods.include? :send_later) #this means Delayed_job exists , so make use of asynchronous delivery of pfeed
in line 45 of app/models/pfeed_item.rb. Was necessary for rails3.
The text was updated successfully, but these errors were encountered: