Skip to content

Commit a05b2b7

Browse files
committed
Fix compilation
1 parent 5f3d2d8 commit a05b2b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/elasticsearch/index/engine/InternalEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1709,7 +1709,7 @@ private long commitIndexWriter(final IndexWriter writer, final Translog translog
17091709
* of invocation of the commit data iterator (which occurs after all documents have been flushed to Lucene).
17101710
*/
17111711
final Map<String, String> commitData = new HashMap<>(5);
1712-
commitData.put(Translog.TRANSLOG_GENERATION_KEY, translogFileGeneration));
1712+
commitData.put(Translog.TRANSLOG_GENERATION_KEY, translogFileGeneration);
17131713
commitData.put(Translog.TRANSLOG_UUID_KEY, translogUUID);
17141714
commitData.put(SequenceNumbers.LOCAL_CHECKPOINT_KEY, localCheckpointValue);
17151715
if (syncId != null) {

0 commit comments

Comments
 (0)