407: handler500 error in 1175

steve.******@gmai***** (Google Code) (Is this you? Claim this profile.)
Feb. 24, 2008
What's the URL of the page containing the problem?
svn checkout r1175

What steps will reproduce the problem?
1. check out r1175
2. run devserver.sh
3. go to the url in your browser and get a stack trace

What is the expected output? What do you see instead?
That one would see the account pref or login.

What operating system are you using? What browser?
Fedora 8, Firefox

Please provide any additional information below.
The following fixed the issue for me ...

Index: urls.py
===================================================================
--- urls.py     (revision 1175)
+++ urls.py     (working copy)
@@ -1,8 +1,7 @@
 import os.path
 
 from django.conf import settings
-from django.conf.urls.defaults import patterns, include
-
+from django.conf.urls.defaults import patterns, include, handler500
 from reviewboard.reviews.feeds import RssReviewsFeed, AtomReviewsFeed, \
                                       RssSubmitterReviewsFeed, \
                                       AtomSubmitterReviewsFeed, \
chipx86
#1 chipx86
I'm not seeing anything that uses handler500, and I can't reproduce the stack trace.
How did this fix it?
david
#2 david
Did you have DEBUG turned off?  The dev server won't work without DEBUG = True due to
static media and other things.
chipx86
#3 chipx86
  • +Fixed