mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
fix(MQTT Trigger Node): Fix node causing a start up hang when active (#7498)
Github issue / Community forum post (link here to close automatically):
This commit is contained in:
parent
3ef771ea38
commit
baecb93bef
|
@ -197,7 +197,7 @@ export class MqttTrigger implements INodeType {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (this.getMode() === 'trigger') {
|
if (this.getMode() === 'trigger') {
|
||||||
await manualTriggerFunction();
|
void manualTriggerFunction();
|
||||||
}
|
}
|
||||||
|
|
||||||
async function closeFunction() {
|
async function closeFunction() {
|
||||||
|
|
Loading…
Reference in a new issue