-
Notifications
You must be signed in to change notification settings - Fork 31
INTPYTHON-355 Remove transaction support #352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
bfd3d8a to
7d40e47
Compare
7d40e47 to
a682561
Compare
|
|
||
| def tearDown(self): | ||
| del connection.features.supports_transactions | ||
| del connection.features._supports_transactions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is staying in for QE right or for both QE and future custom atomic ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both
aclark4life
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sad to see it go but LGTM! Thanks
56b6640 to
07f078b
Compare
07f078b to
d5aa1a7
Compare
MongoDB's best practices for transactions ("use them only when needed") isn't compatible with how Django uses atomic() internally. Instead, a separate atomic() function for use in user code will be provided.