Changing message of IndexController to reflect that index rebuild happens in a different thread.

This commit is contained in:
bdc34 2010-07-12 18:58:34 +00:00
parent ffc9fc47e9
commit 83e3379592

View file

@ -108,7 +108,7 @@ public class IndexController extends FreeMarkerHttpServlet {
return mergeBodyToTemplate("errorMessage.ftl", body, config);
}
body.put("message","Search index complete. Elapsed time " + (System.currentTimeMillis() - start) + " msec.");
body.put("message","Rebuilding of index started.");
return mergeBodyToTemplate("message.ftl", body, config);
}
}