Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
3.0.2, 3.0.0, 3.0.1, 3.1.0
-
None
Description
following discussion on https://github.com/mariadb-corporation/mariadb-connector-nodejs/issues/180
In 3.x version, pool that doesn't have a listener on 'error' event will exit application.
as a workaround, adding code
pool.on('error', (err) => {}); |
solve the problem.