n8cn / packages /cli /src /task-runners /task-broker /errors /task-runner-accept-timeout.error.ts
gallyga's picture
Add n8n Chinese version
aec3094
import { OperationalError } from 'n8n-workflow';
export class TaskRunnerAcceptTimeoutError extends OperationalError {
constructor(taskId: string, runnerId: string) {
super(`Runner (${runnerId}) took too long to acknowledge acceptance of task (${taskId})`, {
level: 'warning',
});
}
}