mirror of https://github.com/apache/lucene.git
SOLR-6380: Added missing context info to log message if IOException occurs in processing tlog
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1618272 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
73bb9c91d9
commit
0baa187e09
|
@ -278,6 +278,9 @@ Bug Fixes
|
||||||
* SOLR-6284: Fix NPE in OCP when non-existent sliceId is used for a
|
* SOLR-6284: Fix NPE in OCP when non-existent sliceId is used for a
|
||||||
deleteShard request (Ramkumar Aiyengar via Anshum Gupta)
|
deleteShard request (Ramkumar Aiyengar via Anshum Gupta)
|
||||||
|
|
||||||
|
* SOLR-6380: Added missing context info to log message if IOException occurs in processing tlog
|
||||||
|
(Steven Bower via hossman)
|
||||||
|
|
||||||
Optimizations
|
Optimizations
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
|
|
@ -794,7 +794,7 @@ public class UpdateLog implements PluginInfoInitialized {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
log.error("Error inspecting tlog " + ll);
|
log.error("Error inspecting tlog " + ll, e);
|
||||||
ll.decref();
|
ll.decref();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue