Closed mickfeech closed 1 year ago
When I add acts_as_indexed to my model with some fields I'm getting the following error, whenever I try to create new records within that model...
The process cannot access the file because another process has locked a portion of the file
app/controllers/reviews_controller.rb:52:in `create' app/controllers/reviews_controller.rb:51:in `create'
Here are those lines...
def create @review = review.new(params[:review]) respond_to do |format| if @review.save # some stuff end end end
When I add acts_as_indexed to my model with some fields I'm getting the following error, whenever I try to create new records within that model...
The process cannot access the file because another process has locked a portion of the file
Here are those lines...