Revision 9986
Added by Jing Tao about 8 years ago
src/edu/ucsb/nceas/metacat/MetacatHandler.java | ||
---|---|---|
2745 | 2745 |
for(String id : successList) { |
2746 | 2746 |
results.append("<pid>" + id + "</pid>\n"); |
2747 | 2747 |
} |
2748 |
results.append("<note>The object(s) was/were submitted to the index queue successfully. However, this doesn't mean they were indexed successfully.</note>"); |
|
2748 | 2749 |
results.append("</success>"); |
2749 | 2750 |
} |
2750 | 2751 |
|
... | ... | |
2753 | 2754 |
for(String id : failedList) { |
2754 | 2755 |
results.append("<pid>" + id + "</pid>\n"); |
2755 | 2756 |
} |
2757 |
results.append("<note>The object(s) couldn't be submitted to the index queue.</note>"); |
|
2756 | 2758 |
results.append("</error>"); |
2757 | 2759 |
} |
2758 | 2760 |
results.append("</results>\n"); |
Also available in: Unified diff
Add a note to notify users that the reindex action is asynchronized.