Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
public
/
sequelize
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
不要怂,就是干,撸起袖子干!
Commit 16f4312c
authored
Mar 26, 2015
by
David Granqvist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added transaction ID to transaction.finnished error message
1 parent
80414a1c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/sequelize.js
lib/sequelize.js
View file @
16f4312
...
...
@@ -733,7 +733,7 @@ module.exports = (function() {
}
if
(
options
.
transaction
&&
options
.
transaction
.
finished
)
{
return
Promise
.
reject
(
options
.
transaction
.
finished
+
' has been called on this transaction, you can no longer use it'
);
return
Promise
.
reject
(
options
.
transaction
.
finished
+
' has been called on this transaction
('
+
options
.
transaction
.
id
+
')
, you can no longer use it'
);
}
if
(
this
.
test
.
$trackRunningQueries
)
{
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment