SVN: r25593 - trunk/quixote
David Binger <dbinger-fVcApmY9cLvQ3/1i3zOLAti2O/[email protected]> Mon, 15 Nov 2004 09:58:24 -0500
| Newsgroups | gmane.comp.web.quixote.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: dbinger
Date: 2004-11-15 09:32:21 -0500 (Mon, 15 Nov 2004)
New Revision: 25593
Modified:
trunk/quixote/config.py
Log:
Remove RUN_ONCE configuration variable.
Modified: trunk/quixote/config.py
===================================================================
--- trunk/quixote/config.py 2004-11-13 20:49:54 UTC (rev 25592)
+++ trunk/quixote/config.py 2004-11-15 14:32:21 UTC (rev 25593)
@@ -1,5 +1,5 @@
-"""quixote.config
-$HeadURL$
+"""
+$URL$
$Id$
Quixote configuration information. This module provides both the
@@ -19,7 +19,7 @@
# up-and-running in a production environment, these settings are mostly
# right; all you really need to customize are ERROR_EMAIL, and ERROR_LOG.
# If you need to test/debug/develop a Quixote application, though, you'll
-# probably want to also change DISPLAY_EXCEPTIONS and maybe RUN_ONCE.
+# probably want to also change DISPLAY_EXCEPTIONS.
# Again, you shouldn't edit this file unless you don't care what happens
# in the future (in particular, an upgrade to Quixote would clobber your
# edits).
@@ -49,12 +49,6 @@
# information about the traceback, will be used.
DISPLAY_EXCEPTIONS = None
-# If true, Quixote will service exactly one request at a time, and
-# then exit. This makes no difference when you're running as a
-# straight CGI script, but it makes it easier to debug while running
-# as a FastCGI script.
-RUN_ONCE = False
-
# Compress large pages using gzip if the client accepts that encoding.
COMPRESS_PAGES = False
@@ -133,7 +127,6 @@
'display_exceptions',
'secure_errors',
'error_log',
- 'run_once',
'compress_pages',
'form_tokens',
'session_cookie_domain',