Disable notes search until it can be made scalable

This commit is contained in:
Tom Hughes 2014-01-09 08:41:59 +00:00
parent 0c3c2e01bf
commit 1e2b99a75b
2 changed files with 59 additions and 46 deletions

View file

@ -260,6 +260,11 @@ class NotesController < ApplicationController
# Find the notes we want to return
@notes = @notes.order("updated_at DESC").limit(result_limit).preload(:comments)
# Disable notes search until we can make it scalable
response.headers['Error'] = "Searching of notes is currently unavailable"
render :text => "", :status => :service_unavailable
return false
# Render the result
respond_to do |format|
format.rss { render :action => :index }