You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Jan Høydahl (JIRA)" <ji...@apache.org> on 2013/02/14 09:42:13 UTC

[jira] [Closed] (SOLR-1573) Replication stats page for slaves not displaying two lines of master information

     [ https://issues.apache.org/jira/browse/SOLR-1573?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jan Høydahl closed SOLR-1573.
-----------------------------

    Resolution: Won't Fix

Closing old issue related to now non-existing JSP
                
> Replication stats page for slaves not displaying two lines of master information
> --------------------------------------------------------------------------------
>
>                 Key: SOLR-1573
>                 URL: https://issues.apache.org/jira/browse/SOLR-1573
>             Project: Solr
>          Issue Type: Bug
>          Components: web gui
>    Affects Versions: 1.4
>            Reporter: Jay Hill
>            Assignee: Noble Paul
>            Priority: Minor
>
> On the admin page for replication, on a slave host, there used to be 3 lines of information about the master:
> LIne 1: master url, i.e. http://foo.bar:8983/solr/core0/replication
> Line 2: Information about the master, i.e. "Latest Index Version 123456, Generation: 16
> Line 3: More master inro, i.e. "Replicatable Index Version 123456, Generation: 16
> But now only Line 1 is displaying. There is a block of code in ...replication/index.jsp where this is displayed that never seems to drop into:
> <%
>     if (nl != null) {         
>       nl = (NamedList) nl.get("master");
>       if(nl != null){      
>   %>
> <tr>  
>   <td>
>   </td>
>   <td>Latest Index Version:<%=nl.get("indexVersion")%>, Generation: <%=nl.get("generation")%>
>   </td>
> </tr>
> <tr>
>   <td></td>
>   <td>Replicatable Index Version:<%=nl.get("replicatableIndexVersion")%>, Generation: <%=nl.get("replicatableGeneration")%>
>   </td>
> </tr>
> <%
> }
> }%>
> Those bits of information were quite useful when comparing the slave versions to the master.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org