Skip to content

Commit

Permalink
fix(MQTT Trigger Node): Fix node causing a start up hang when active (n…
Browse files Browse the repository at this point in the history
…8n-io#7498)

Github issue / Community forum post (link here to close automatically):
  • Loading branch information
valya authored Oct 24, 2023
1 parent 3ef771e commit baecb93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/MQTT/MqttTrigger.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export class MqttTrigger implements INodeType {
};

if (this.getMode() === 'trigger') {
await manualTriggerFunction();
void manualTriggerFunction();
}

async function closeFunction() {
Expand Down

0 comments on commit baecb93

Please sign in to comment.