We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11a4a0e commit e3c00c0Copy full SHA for e3c00c0
lib/transaction.js
@@ -37,6 +37,8 @@ function mixinTransaction(PostgreSQL) {
37
if (err) return cb(err);
38
const tx = new Transaction(connector, connection);
39
tx.txId = uuid.v1();
40
+ tx.connector = connector;
41
+ tx.connection = connection;
42
connection.txId = tx.txId;
43
cb(null, tx);
44
});
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@apexdesigner/loopback-connector-postgresql",
3
- "version": "7.0.12",
+ "version": "7.0.13",
4
"description": "Loopback PostgreSQL Connector",
5
"keywords": [
6
"LoopBack",
0 commit comments