MySQL node not closing connections after Operation [GOT CREATED]

Hello,

I am seeing that the current MySQL Node does not close connections once it finish the activity (the pgSQL does close the connections), this give me max_connections error in MySQL Server.

Can someone guide me how to update the code to get MySQL node to update this behavior?

in pgSQL they have this at the end of execute:

		// Close the connection
		await pgp.end();

		return this.prepareOutputData(returnItems);

But for the MySQL there is no Close connections:

		// Can add Closing Connections Function?

		return this.prepareOutputData(returnItems);

Best Regards,
Tony

Welcome to the community @tony!

Got fixed with this commit:
https://github.com/n8n-io/n8n/commit/a00c9e0efb4c9be60c62650f646200d193b7df64

Will be released with the next version. Will update here once it is out…

Got released with 0.61.0