File size: 294 Bytes
aec3094
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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',
		});
	}
}