mirror of https://github.com/apache/lucene.git
SOLR-6153: ReplicationHandler backup response format should contain backup name
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1602592 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a52a82bec5
commit
a99904a2bd
|
@ -227,6 +227,9 @@ Other Changes
|
|||
* SOLR-6161: SolrDispatchFilter should throw java.lang.Error back even if wrapped in
|
||||
another exception. (Miklos Christine via shalin)
|
||||
|
||||
* SOLR-6153: ReplicationHandler backup response format should contain backup name.
|
||||
(Varun Thacker via shalin)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -154,6 +154,7 @@ public class SnapShooter {
|
|||
details.add("fileCount", files.size());
|
||||
details.add("status", "success");
|
||||
details.add("snapshotCompletedAt", new Date().toString());
|
||||
details.add("snapshotName", snapshotName);
|
||||
} catch (Exception e) {
|
||||
SnapPuller.delTree(snapShotDir);
|
||||
LOG.error("Exception while creating snapshot", e);
|
||||
|
|
Loading…
Reference in New Issue