VIVO-869 Improve the display
Show exclusions count as separate from deletions count. When there is an error on the Ajax call, display the error status and stop asking for refreshes. When a rebuild is requested, redirect to just status, so refreshing the page would not request another rebuild.
This commit is contained in:
parent
78491234db
commit
83a5523ace
7 changed files with 62 additions and 16 deletions
|
@ -7,6 +7,8 @@
|
|||
|
||||
<h2>${i18n().search_index_status}</h2>
|
||||
|
||||
<div id="searchIndexerError" />
|
||||
|
||||
<div id="searchIndexerStatus">
|
||||
Search Indexer Status
|
||||
</div>
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
<#macro showIndexerCounts countsType, counts>
|
||||
<#if countsType == "URI_COUNTS">
|
||||
Updated: ${counts.updated}, deleted: ${counts.deleted}, remaining: ${counts.remaining}, total: ${counts.total}
|
||||
Updated: ${counts.updated}, excluded: ${counts.excluded}, deleted: ${counts.deleted}, remaining: ${counts.remaining}, total: ${counts.total}
|
||||
<#elseif countsType == "STATEMENT_COUNTS">
|
||||
Processed: ${counts.processed}, remaining: ${counts.remaining}, total: ${counts.total}
|
||||
<#elseif countsType == "REBUILD_COUNTS">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue