mirror of https://github.com/node-red/node-red.git
Allow scoped flows to have their timeout
parent
e17256934d
commit
ff5c2a264d
|
|
@ -489,6 +489,9 @@ class Flow {
|
|||
return resolve();
|
||||
}
|
||||
} else if (this.shutdownScope.length) {
|
||||
if (this.pendingMsgCount === 0) {
|
||||
return resolve();
|
||||
}
|
||||
let count = 0;
|
||||
this.shutdownScope.forEach((flow) => {
|
||||
if (flow instanceof Flow) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue