fixed exceeded amount of tries typo

'retires' -> 'retries'
This commit is contained in:
3ldar-nasyrov 2021-03-16 23:17:07 +03:00 committed by GitHub
parent c20438bf3e
commit 37a17749ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -872,7 +872,7 @@ bool DDLWorker::tryExecuteQueryOnLeaderReplica(
else /// If we exceeded amount of tries else /// If we exceeded amount of tries
{ {
LOG_WARNING(log, "Task {} was not executed by anyone, maximum number of retries exceeded", task.entry_name); LOG_WARNING(log, "Task {} was not executed by anyone, maximum number of retries exceeded", task.entry_name);
task.execution_status = ExecutionStatus(ErrorCodes::UNFINISHED, "Cannot execute replicated DDL query, maximum retires exceeded"); task.execution_status = ExecutionStatus(ErrorCodes::UNFINISHED, "Cannot execute replicated DDL query, maximum retries exceeded");
} }
return false; return false;
} }