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"