We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d493d9 commit 9efa947Copy full SHA for 9efa947
opengrok-indexer/src/main/java/org/opengrok/indexer/index/IndexDatabase.java
@@ -487,17 +487,17 @@ public void update() throws IOException {
487
reader.close();
488
}
489
490
-
491
- try {
492
- finishWriting();
493
- } catch (IOException e) {
494
- finishingException = e;
495
- }
496
} catch (RuntimeException ex) {
497
LOGGER.log(Level.SEVERE,
498
"Failed with unexpected RuntimeException", ex);
499
throw ex;
500
} finally {
+ try {
+ finishWriting();
+ } catch (IOException e) {
+ finishingException = e;
+ }
+
501
completer = null;
502
try {
503
if (writer != null) {
0 commit comments