From 530d80fdc18ebf810bab4c2fbb292fbfe659af29 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Mon, 25 Sep 2017 16:38:08 -0400 Subject: [PATCH] Fix global checkpoint sync log message The log message here is incorrect, a failure here is occuring on the post-operation global checkpoint sync, not the background sync. This commit fixes the log message. --- .../action/support/replication/TransportReplicationAction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/elasticsearch/action/support/replication/TransportReplicationAction.java b/core/src/main/java/org/elasticsearch/action/support/replication/TransportReplicationAction.java index 7dfe10a7753..a63d14d7f9d 100644 --- a/core/src/main/java/org/elasticsearch/action/support/replication/TransportReplicationAction.java +++ b/core/src/main/java/org/elasticsearch/action/support/replication/TransportReplicationAction.java @@ -387,7 +387,7 @@ public abstract class TransportReplicationAction< if (ExceptionsHelper.unwrap(e, AlreadyClosedException.class, IndexShardClosedException.class) == null) { logger.info( new ParameterizedMessage( - "{} failed to execute background global checkpoint sync", + "{} failed to execute post-operation global checkpoint sync", shard.shardId()), e); // intentionally swallow, a missed global checkpoint sync should not fail this operation