以下のコードで、更新に失敗した場合の処理として正しいものはどれですか? ```ruby def update @post = Post.find(params[:id]) if @post.update(post_params) redirect_to post_path(@post) else # ここの処理 end end ```