You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2010/02/05 08:38:04 UTC

[Solr Wiki] Trivial Update of "CoreAdmin" by newacct

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "CoreAdmin" page has been changed by newacct.
http://wiki.apache.org/solr/CoreAdmin?action=diff&rev1=27&rev2=28

--------------------------------------------------

       SolrCore mycore2 = container.getCore("core2");
       SolrParams params = req.getParams();
       String a = params.get( CoreAdminParams.ACTION );
-      if (a.toLowerCase().equals("mystat"))  {
+      if (a.equalsIgnoreCase("mystat"))  {
           // TODO: populate 'rsp' as necessary. 
        } 
    }