From 85976f9e2bc9a1df1ef9b77a3d688b66188f614d Mon Sep 17 00:00:00 2001 From: Sarthak Aggarwal Date: Mon, 18 Mar 2024 22:17:46 +0530 Subject: [PATCH] fix typo in alias message Signed-off-by: Sarthak Aggarwal --- .../indexstatemanagement/step/rollover/AttemptRolloverStep.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/step/rollover/AttemptRolloverStep.kt b/src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/step/rollover/AttemptRolloverStep.kt index 66f9486c2..560b1be58 100644 --- a/src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/step/rollover/AttemptRolloverStep.kt +++ b/src/main/kotlin/org/opensearch/indexmanagement/indexstatemanagement/step/rollover/AttemptRolloverStep.kt @@ -415,10 +415,10 @@ class AttemptRolloverStep(private val action: RolloverAction) : Step(name) { "This index has already been rolled over using this alias, treating as a success [index=$index, alias=$alias]" fun getSuccessCopyAliasMessage(index: String, newIndex: String) = - "Successfully rolled over and copied alias from [index=$index] to [index=$newIndex]" + "Successfully rolled over and copy alias from [index=$index] to [index=$newIndex]" fun getFailedCopyAliasMessage(index: String, newIndex: String) = - "Successfully rolled over but failed to copied alias from [index=$index] to [index=$newIndex]" + "Successfully rolled over but failed to copy alias from [index=$index] to [index=$newIndex]" fun getCopyAliasNotAckMessage(index: String, newIndex: String) = "Successfully rolled over but copy alias from [index=$index] to [index=$newIndex] is not acknowledged"