Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unhanded rejection error :Transaction query already complete - knex, express.js

I was trying to check for a value in a table first, and if it exists, delete a row in another table and insert this new data into that table.

I used a transaction with a select, del(), and a insert command

db.transaction(trx => {
  return trx('users')
    .where({ username: user.username })
    .select('username')
    .returning('username')

    .then(retData => {
      retUserName = retData[0];

      db('profile')
        .where({ username: user.username })
        .del()
        .then(retData => {
          return trx
            .insert(profileData)
            .into('profile')
            .returning('*');
        });
    })
    .then(retData => {
      res.json({ ProfileData: profileData });
    })
    .then(trx.commit)
    .catch(trx.rollback);
}).catch(err => res.status(400).json('unable to create profile'));

I get this error Unhanded rejection error:Transaction query already completed

but the data hasn't been added to the table.

like image 797
Nirvan bbs Avatar asked Dec 04 '18 18:12

Nirvan bbs


2 Answers

You are returning promise from transaction handler callback, which causes transaction to automatically committed / rolled back depending if returned promise resolves / rejects.

https://knexjs.org/#Transactions

Throwing an error directly from the transaction handler function automatically rolls back the transaction, same as returning a rejected promise.

Notice that if a promise is not returned within the handler, it is up to you to ensure trx.commit, or trx.rollback are called, otherwise the transaction connection will hang.

In your code you are mixing those two different ways to use transactions, which causes it to be committed / rolledback twice.

like image 84
Mikael Lepistö Avatar answered Oct 04 '22 22:10

Mikael Lepistö


I ran into different situation but same error. Perhaps it helps someone.

knex.transaction(async (t) => {
...

Using async function causes the same effect..

This worked

knex.transaction((t) => {
...
like image 39
Jose_Tandil Avatar answered Oct 04 '22 22:10

Jose_Tandil