mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
fixed exceeded amount of tries typo
'retires' -> 'retries'
This commit is contained in:
parent
c20438bf3e
commit
37a17749ea
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user