]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/notes_controller.rb
Disable notes search until it can be made scalable
[rails.git] / app / controllers / notes_controller.rb
index eb2625d55f766f4d2c0a08e2ef8ccb43501b5f8f..bf28d4c25b1b7a185247f1283018deced5683bf5 100644 (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 }