Я разрабатываю приложение Rails, которое выполняет некоторые закулисные заговоры, чтобы создать сравнение между различными наборами данных. Я вижу случайную ошибку 500 (ActionView::Template::Error
) при создании объекта Comparison в моей базе данных DataMapper. Это происходит иногда только на одной машине, каждый раз на другой машине и никогда на одной. Эти ошибки коррелируют с производительностью компьютера, что наводит меня на мысль, что DataMapper делает что-то странное за кулисами.
Я разочаровался в погоне за «почему» и сейчас просто пытаюсь поймать ошибку 500 и принудительно обновить, чтобы не дать рецензентам увидеть проблему. Однако все, что я пробовал, не сработало. Вот мои настройки:
comparisons_controller.rb
# This is the action which allows for generation of a new comparison. It uses a fork to spawn a child process which generates the comparison. Notifications will appear when this fails or finishes.
def create
first_set = get_msruns_from_array_of_ids(params[:comparison1].uniq)
second_set = get_msruns_from_array_of_ids(params[:comparison2].uniq)
comp = Comparison.new
comp.msrun_firsts = first_set
comp.msrun_seconds = second_set
comp.first_description = params[:first_description]
comp.second_description = params[:second_description]
comp.save
# This should capture the windows fork and prevent it.
if RbConfig::CONFIG['host_os'] === 'mingw32'
redirect_to :action => "show", :id => comp.id
result = comp.graph
a = Alert.create({ :email => false, :show => true, :description => "DONE WITH COMPARISON #{comp.id}" })
else
fork do
result = comp.graph
a = Alert.create({ :email => false, :show => true, :description => "DONE WITH COMPARISON #{comp.id}" })
end
flash[:notice] = "Comparison started. You will be notified when it completes."
# HERE I've attempted to capture problem
begin
render :action => "show"
rescue
redirect_to :action => "show", :id => comp.id
end
end
Это отображается в моем файле production.log:
ActionView::Template::Error (undefined method `first_description' for nil:NilClass):
1: /- @comparison ||= Comparison.get(params[:id])
2: /%h1= "Comparison ##{@comparison.id}"
3: %p <strong>User Description: </strong>
4: <p> Set#1: #{ @comparison.first_description }
5: <p> Set#2: #{@comparison.second_description }
6: <p> #{link_to "Edit", edit_comparison_path(@comparison)}
7: %ul.categories
app/views/comparisons/show.html.haml:4
Эта ошибка беспокоила меня уже несколько недель, но не дала мне. Любые идеи о том, почему или как отловить ошибку и принудительно обновить?
Спасибо.