mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
🐛 Fix Interval Trigger (#2043)
Fixed infinite amount of interval triggered nodes executions
This commit is contained in:
@@ -84,7 +84,7 @@ export class Interval implements INodeType {
|
||||
throw new Error('The interval value is too large.');
|
||||
}
|
||||
|
||||
const intervalObj = setInterval(executeTrigger, );
|
||||
const intervalObj = setInterval(executeTrigger, intervalValue);
|
||||
|
||||
async function closeFunction() {
|
||||
clearInterval(intervalObj);
|
||||
|
||||
Reference in New Issue
Block a user