Ved at kigge på modulets kode fandt jeg funktionen til at frigive en forbindelse fra en pool:
pool.prototype.releaseConnection = function releaseConnection(connection) {
//Use the underlying connection from the mysql-module here:
return this.pool.releaseConnection(connection.connection);
};
Så hvis alle disse funktioner lever i den samme fil, kan du gøre følgende i getUser-funktionen:erstat
conn.release();
med
pool.releaseConnection(conn);