Skip to content

Commit

Permalink
[misc] adding 10.8 and 10.9 build testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Jun 16, 2022
1 parent c147401 commit f0e000d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ env:
jobs:
fast_finish: true
allow_failures:
- env: srv=build v=10.6
- env: srv=build v=10.9
- env: srv=xpand RUN_LONG_TEST=0
include:
- env: srv=mariadb v=10.6
Expand All @@ -43,6 +43,7 @@ jobs:
- env: srv=mariadb v=10.4 local=1
- env: srv=mariadb v=10.5 local=1 DISABLE_SSL=1
- env: srv=mariadb v=10.7 local=1
- env: srv=mariadb v=10.8 local=1
- env: srv=mariadb v=10.6 local=1
node_js: 14
- env: srv=mariadb v=10.6 local=1 CLEAR_TEXT=1
Expand All @@ -60,7 +61,7 @@ jobs:
- if: type = push AND fork = false
env: srv=skysql-ha RUN_LONG_TEST=0
- if: type = push AND fork = false
env: srv=build v=10.6
env: srv=build v=10.9
- if: type = push AND fork = false
env: srv=mysql v=5.7
- if: type = push AND fork = false
Expand Down
10 changes: 6 additions & 4 deletions lib/pool.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ class Pool extends EventEmitter {
() => {},
() => {}
);
reject(new Errors.createFatalError(
'Cannot create new connection to pool, pool closed',
Errors.ER_ADD_CONNECTION_CLOSED_POOL
));
reject(
new Errors.createFatalError(
'Cannot create new connection to pool, pool closed',
Errors.ER_ADD_CONNECTION_CLOSED_POOL
)
);
return;
}

Expand Down

0 comments on commit f0e000d

Please sign in to comment.