Created
December 18, 2014 04:23
-
-
Save davewongillies/ffc1378411cf1d2bd5cb to your computer and use it in GitHub Desktop.
starting up Sentry with initial_data.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sentry --config=/var/sentry/sentry.conf.py start | |
Performing upgrade before service startup... | |
Syncing... | |
Creating tables ... | |
Installing custom SQL ... | |
Installing indexes ... | |
AttributeError: Problem installing fixture 'initial_data.json': 'NoneType' object has no attribute 'using' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"pk": 1, | |
"model": "auth.user", | |
"fields": { | |
"username": "admin", | |
"first_name": "", | |
"last_name": "", | |
"is_active": true, | |
"is_superuser": true, | |
"is_staff": true, | |
"last_login": "2008-09-04 14:25:29", | |
"groups": [], | |
"user_permissions": [], | |
"password": "sha1$saltychocolateballs$fd94606689816a112d2e88814c15e1f4eb7ed582", | |
"email": "[email protected]", | |
"date_joined": "2008-09-04 14:25:29" | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So this fails if you don't have the database populated beforehand.