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/gis_tests/layermap | |
| 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/gis_tests/layermap')
| -rw-r--r-- | tests/gis_tests/layermap/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gis_tests/layermap/tests.py b/tests/gis_tests/layermap/tests.py index 85f105f4a0..e4477189cb 100644 --- a/tests/gis_tests/layermap/tests.py +++ b/tests/gis_tests/layermap/tests.py @@ -322,7 +322,7 @@ class OtherRouter(object): def allow_relation(self, obj1, obj2, **hints): return None - def allow_migrate(self, db, model): + def allow_migrate(self, db, app_label, **hints): return True |
