If it can't after a couple of retry (5 by default, can be changed on the command line) it will just ignore it and go to the next anime.
6 lines
85 B
TypeScript
6 lines
85 B
TypeScript
interface IConfigTask {
|
|
address: string;
|
|
config: IConfigLine;
|
|
retry: number;
|
|
}
|