Skip to content

Commit 0d3dedf

Browse files
committed
variables in log in wrong order
1 parent bcfe075 commit 0d3dedf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

x-pack/plugin/ilm/src/main/java/org/elasticsearch/xpack/ilm/IndexLifecycleRunner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,9 +326,9 @@ void maybeRunAsyncAction(ClusterState currentState, IndexMetadata indexMetadata,
326326
// ILM is stopped, so do not try to run async action
327327
logger.debug(
328328
"expected step for index [{}] with policy [{}] is [{}], not running async action",
329-
currentStep.getKey(),
330329
index,
331-
policy
330+
policy,
331+
expectedStepKey
332332
);
333333
return;
334334
}

0 commit comments

Comments
 (0)