fix(plugin-workflow): fix interval number greater then 32-bits integer (#3592)

This commit is contained in:
Junyi 2024-03-01 17:49:45 +08:00 committed by GitHub
parent 2140df071d
commit 7c79e58df9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,6 +3,8 @@ import parser from 'cron-parser';
import type Plugin from '../../Plugin';
import { SCHEDULE_MODE, parseDateWithoutMs } from './utils';
const MAX_SAFE_INTERVAL = 2147483647;
export default class StaticScheduleTrigger {
private timers: Map<string, NodeJS.Timeout | null> = new Map();
@ -80,8 +82,18 @@ export default class StaticScheduleTrigger {
if (toggle) {
if (!this.timers.has(key)) {
const interval = Math.max(nextTime - Date.now(), 0);
if (interval > MAX_SAFE_INTERVAL) {
this.timers.set(
key,
setTimeout(() => {
this.timers.delete(key);
this.schedule(workflow, nextTime);
}, MAX_SAFE_INTERVAL),
);
} else {
this.timers.set(key, setTimeout(this.trigger.bind(this, workflow, nextTime), interval));
}
}
} else {
const timer = this.timers.get(key);
clearTimeout(timer);