Při pohledu na kód modulu jsem našel funkci pro uvolnění připojení z fondu:
pool.prototype.releaseConnection = function releaseConnection(connection) {
//Use the underlying connection from the mysql-module here:
return this.pool.releaseConnection(connection.connection);
};
Pokud tedy všechny tyto funkce žijí ve stejném souboru, můžete ve funkci getUser provést následující:nahradit
conn.release();
s
pool.releaseConnection(conn);