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 79166de commit b137206Copy full SHA for b137206
demo.js
@@ -39,5 +39,4 @@ db.transaction(function (tx) {
39
});
40
// tx.commit();
41
42
-
43
db.close();
lib/postgres-pure.js
@@ -909,7 +909,9 @@ function Connection(args) {
909
}
910
if (readyState) {
911
if (tx_queue.length > 0) {
912
- sys.debug("nextTx: tx_queue length is: " + tx_queue.length);
+ if (exports.DEBUG > 1) {
913
+ sys.debug("nextTx: tx_queue length is: " + tx_queue.length);
914
+ }
915
current_tx = tx_queue.shift();
916
if (current_tx !== null && current_tx !== undefined) {
917
if (exports.DEBUG>2) {
0 commit comments