Change transitive -> transient in ILM log message (#60871)
"Transitive" is technically ok here but it's an overloaded word and it's not immediately clear which meaning is intended so this log message always makes me do a double-take. I think both "transient" and "transitory" are clearer, with "transient" being the usual choice.
This commit is contained in:
parent
e8d9185045
commit
f168bdac7d
|
@ -211,7 +211,7 @@ class IndexLifecycleRunner {
|
|||
|
||||
if (lifecycleState.isAutoRetryableError() != null && lifecycleState.isAutoRetryableError()) {
|
||||
int currentRetryAttempt = lifecycleState.getFailedStepRetryCount() == null ? 1 : 1 + lifecycleState.getFailedStepRetryCount();
|
||||
logger.info("policy [{}] for index [{}] on an error step due to a transitive error, moving back to the failed " +
|
||||
logger.info("policy [{}] for index [{}] on an error step due to a transient error, moving back to the failed " +
|
||||
"step [{}] for execution. retry attempt [{}]", policy, index, lifecycleState.getFailedStep(), currentRetryAttempt);
|
||||
clusterService.submitStateUpdateTask(
|
||||
String.format(Locale.ROOT, "ilm-retry-failed-step {policy [%s], index [%s], failedStep [%s]}", policy, index,
|
||||
|
|
Loading…
Reference in New Issue