Improved handling of Issue #10

This commit is contained in:
Roberto Rosario
2011-08-08 23:38:36 -04:00
parent 84e12efb43
commit 08bc9ebf0e
3 changed files with 7 additions and 4 deletions

View File

@@ -7,6 +7,7 @@ except ImportError:
class OperationalError(Exception):
pass
from django.core.exceptions import ImproperlyConfigured
from django.db import transaction
from django.db.utils import DatabaseError
#from django.utils import simplejson
@@ -38,7 +39,7 @@ def register_history_type(history_type_dict):
except DatabaseError:
transaction.rollback()
# Special case for ./manage.py syncdb
except OperationalError:
except (OperationalError, ImproperlyConfigured):
transaction.rollback()
# Special for DjangoZoom, which executes collectstatic media
# doing syncdb and creating the database tables

View File

@@ -4,6 +4,7 @@ except ImportError:
class OperationalError(Exception):
pass
from django.core.exceptions import ImproperlyConfigured
from django.db import transaction
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import ugettext
@@ -82,7 +83,7 @@ def create_default_queue():
except DatabaseError:
transaction.rollback()
# Special case for ./manage.py syncdb
except OperationalError:
except (OperationalError, ImproperlyConfigured):
transaction.rollback()
# Special for DjangoZoom, which executes collectstatic media
# doing syncdb and creating the database tables

View File

@@ -4,6 +4,7 @@ except ImportError:
class OperationalError(Exception):
pass
from django.core.exceptions import ImproperlyConfigured
from django.db import transaction
from django.db.utils import DatabaseError
from django.shortcuts import get_object_or_404
@@ -36,7 +37,7 @@ def register_permission(permission):
except DatabaseError:
transaction.rollback()
# Special case for ./manage.py syncdb
except OperationalError:
except (OperationalError, ImproperlyConfigured):
transaction.rollback()
# Special for DjangoZoom, which executes collectstatic media
# doing syncdb and creating the database tables