1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 20:39:28 +00:00

DatabaseConnectionPool should bubble errors up

This commit is contained in:
2022-03-29 10:06:57 +00:00
parent 2c2c6b602f
commit e2ebaee9be

View File

@@ -111,7 +111,7 @@ class DatabaseConnectionPool {
} }
} catch (e) { } catch (e) {
console.error(e); console.error(e);
data = []; throw e;
} }
return data; return data;