diff options
| author | Loic Bistuer <loic.bistuer@gmail.com> | 2015-02-19 14:27:58 +0700 |
|---|---|---|
| committer | Loic Bistuer <loic.bistuer@gmail.com> | 2015-02-20 21:34:09 +0700 |
| commit | bed504d70bede3431a213203c13a33905d6dbf77 (patch) | |
| tree | b2216527abc707e3d48220017a107c93736b9f7a /tests/sites_tests | |
| parent | dd0b487872de4e3ff966da51e3610bac996e44f0 (diff) | |
Fixed #24351, #24346 -- Changed the signature of allow_migrate().
The new signature enables better support for routing RunPython and
RunSQL operations, especially w.r.t. reusable and third-party apps.
This commit also takes advantage of the deprecation cycle for the old
signature to remove the backward incompatibility introduced in #22583;
RunPython and RunSQL won't call allow_migrate() when when the router
has the old signature.
Thanks Aymeric Augustin and Tim Graham for helping shape up the patch.
Refs 22583.
Diffstat (limited to 'tests/sites_tests')
| -rw-r--r-- | tests/sites_tests/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sites_tests/tests.py b/tests/sites_tests/tests.py index 7eb1c20b60..9b409fd0b5 100644 --- a/tests/sites_tests/tests.py +++ b/tests/sites_tests/tests.py @@ -137,7 +137,7 @@ class SitesFrameworkTests(TestCase): class JustOtherRouter(object): - def allow_migrate(self, db, model): + def allow_migrate(self, db, app_label, **hints): return db == 'other' |
