Django 1.4 (python 2.6) の DB ルーターに問題があります。ドキュメント (https://docs.djangoproject.com/en/dev/topics/db/multi-db/#automatic-database-routing) に従っていますが、サーバーを実行すると、次のエラー メッセージが表示されます。
django.core.exceptions.ImproperlyConfigured: Error importing database router MyDBRouter: "cannot import name connection"
私の設定.py
DATABASES = {
'default': {
...
},
'other' : {
...
}
}
DATABASE_ROUTERS = ['core.models.MyDBRouter',]
ここにdbルーターコード:
class MyAppRouter(object):
def db_for_read(self, model, **hints):
"Point all operations on myapp models to 'other'"
if model._meta.app_label == 'myapp':
return 'other'
return None
def db_for_write(self, model, **hints):
"Point all operations on myapp models to 'other'"
if model._meta.app_label == 'myapp':
return 'other'
return None
def allow_relation(self, obj1, obj2, **hints):
"Allow any relation if a model in myapp is involved"
if obj1._meta.app_label == 'myapp' or obj2._meta.app_label == 'myapp':
return True
return None
def allow_syncdb(self, db, model):
"Make sure the myapp app only appears on the 'other' db"
if db == 'other':
return model._meta.app_label == 'myapp'
elif model._meta.app_label == 'myapp':
return False
return None
「デフォルト」で None を置き換えようとしましたが、それでも機能しません。