- 09 Eyl, 2015 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
This new technique is more straightforward and compatible with test parallelization, where the effective database connection settings no longer match settings.DATABASES.
-
- 06 Şub, 2015 1 kayıt (commit)
-
-
Tim Graham yazdı
-
- 28 Ock, 2015 1 kayıt (commit)
-
-
Tim Graham yazdı
Django imports threading in many other places without fallback.
-
- 01 Ara, 2014 1 kayıt (commit)
-
-
wrwrwr yazdı
-
- 05 Agu, 2014 1 kayıt (commit)
-
-
Shai Berger yazdı
Thanks Michael Miller for reporting the issue.
-
- 10 Nis, 2014 1 kayıt (commit)
-
-
Shai Berger yazdı
The ticket was originally about two failing tests, which are fixed by putting their queries in transactions. Thanks Tim Graham for the report, Aymeric Augustin for the fix, and Simon Charette, Tim Graham & Loïc Bistuer for review.
-
- 21 Mar, 2014 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
-
- 23 Ara, 2013 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
-
- 02 Kas, 2013 1 kayıt (commit)
-
-
Tim Graham yazdı
-
- 23 Eki, 2013 1 kayıt (commit)
-
-
Alasdair Nicol yazdı
-
- 21 Eki, 2013 1 kayıt (commit)
-
-
Bouke Haarsma yazdı
-
- 19 Eki, 2013 1 kayıt (commit)
-
-
Tim Graham yazdı
-
- 18 Eki, 2013 1 kayıt (commit)
-
-
Alasdair Nicol yazdı
-
- 24 Eyl, 2013 1 kayıt (commit)
-
-
Florian Apolloner yazdı
This change prevents including the multiple_database test models without duplicating the router code (we probably should do this at one point). Refs #21148
-
- 09 Eyl, 2013 1 kayıt (commit)
-
-
Florian Apolloner yazdı
-
- 06 Agu, 2013 1 kayıt (commit)
-
-
Alex Cucu yazdı
-
- 29 Tem, 2013 1 kayıt (commit)
-
-
Claude Paroz yazdı
Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way.
-
- 14 Tem, 2013 1 kayıt (commit)
-
-
Tim Graham yazdı
-
- 01 Tem, 2013 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
Refs #20680.
-
- 10 Haz, 2013 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
Fixed #20483.
-
- 11 Mar, 2013 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
enter_transaction_management() was nearly always followed by managed(). In three places it wasn't, but they will all be refactored eventually. The "forced" keyword argument avoids introducing behavior changes until then. This is mostly backwards-compatible, except, of course, for managed itself. There's a minor difference in _enter_transaction_management: the top self.transaction_state now contains the new 'managed' state rather than the previous one. Django doesn't access self.transaction_state in _enter_transaction_management.
-
- 06 Mar, 2013 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
-
- 27 Şub, 2013 1 kayıt (commit)
-
-
Anssi Kääriäinen yazdı
There were a couple of errors in ._dirty flag handling: * It started as None, but was never reset to None. * The _dirty flag was sometimes used to indicate if the connection was inside transaction management, but this was not done consistently. This also meant the flag had three separate values. * The None value had a special meaning, causing for example inability to commit() on new connection unless enter/leave tx management was done. * The _dirty was tracking "connection in transaction" state, but only in managed transactions. * Some tests never reset the transaction state of the used connection. * And some additional less important changes. This commit has some potential for regressions, but as the above list shows, the current situation isn't perfect either.
-
- 26 Şub, 2013 1 kayıt (commit)
-
-
Florian Apolloner yazdı
-