()
| 308 | if (reauthPromise != null) { |
| 309 | // The reauth promise only exists if it hasn't thrown. |
| 310 | const checkBackIn = () => { |
| 311 | this.pool.checkIn(conn); |
| 312 | }; |
| 313 | void reauthPromise.then(checkBackIn, checkBackIn); |
| 314 | } else { |
| 315 | this.pool.checkIn(conn); |