mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -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') {
|
||||
await manualTriggerFunction();
|
||||
void manualTriggerFunction();
|
||||
}
|
||||
|
||||
async function closeFunction() {
|
||||
|
|
Loading…
Reference in a new issue