Closed
Bug 1128945
Opened 11 years ago
Closed 11 years ago
Update settings/local.py in reps.allizom.org
Categories
(Infrastructure & Operations Graveyard :: WebOps: Engagement, task)
Infrastructure & Operations Graveyard
WebOps: Engagement
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: tasos, Assigned: cliang)
Details
(Whiteboard: [kanban:https://webops.kanbanize.com/ctrl_board/2/404] )
Attachments
(1 file)
|
5.01 KB,
text/plain
|
Details |
Hi,
Can you please update the following line in the settings/local.py file for the stage environment (reps.allizom.org):
"INSTALLED_APPS = base.INSTALLED_APPS + ['database_email_backend']"
to:
"INSTALLED_APPS = list(base.INSTALLED_APPS) + ['database_email_backend']"
Also can you please check if there is a similar line in the settings/local.py for the production environment (reps.mozilla.org) ?
Thanks!
| Assignee | ||
Comment 1•11 years ago
|
||
Unfortunately, if I make the change listed above [1] and restart the stage environment, I get an ISE error. I've attached an excerpt of the error log file with the traceback error.
[1] $ diff local.py ~/local_old.py
38,39c38,39
< # bug 1009479, 1128945
< INSTALLED_APPS = list(base.INSTALLED_APPS) + ['database_email_backend']
---
> # bug 1009479
> INSTALLED_APPS = base.INSTALLED_APPS + ['database_email_backend']
| Reporter | ||
Comment 2•11 years ago
|
||
This probably happens because a push to stage failed due to this setting. Please proceed with the change and I will update the stage server with the failed commit. This should eliminate the error.
Thanks!
| Assignee | ||
Updated•11 years ago
|
Assignee: server-ops-webops → cliang
| Reporter | ||
Comment 3•11 years ago
|
||
Seems to be working fine now :)
Finally, could you please add the following line in the same file:
BROWSERID_AUDIENCES = ['https://reps.allizom.org']
Thanks!
| Assignee | ||
Comment 4•11 years ago
|
||
Line added. We're back to an ISE. =)
| Reporter | ||
Comment 5•11 years ago
|
||
After reverting stage instance to an old commit and pushing HEAD again everything works fine. No new traceback is produced. Marking this as resolved. Thanks!
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Updated•9 years ago
|
Product: Infrastructure & Operations → Infrastructure & Operations Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•