From 4b0d9fd0e922ae14597cef147ee1b606dfb13c0e Mon Sep 17 00:00:00 2001 From: Sarthak Aggarwal Date: Tue, 19 Mar 2024 14:27:46 +0530 Subject: [PATCH] fix typo in alias message (#1139) Signed-off-by: Sarthak Aggarwal --- .../indexstatemanagement/step/rollover/AttemptRolloverStep.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 38c796d78..55ec19a69 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 @@ -388,7 +388,7 @@ class AttemptRolloverStep(private val action: RolloverAction) : Step(name) { fun getSuccessCopyAliasMessage(index: String, newIndex: String) = "Successfully rolled over and copied 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" fun getCopyAliasIndexNotFoundMessage(newIndex: String?) =