Changeset 16:147ae390665f
- Timestamp:
- 05/18/05 16:26:01
(3 years ago)
- Author:
- Allan Saddi <allan@saddi.com>
- branch:
- default
- convert_revision:
- svn:46762da8-4eb7-0310-94e9-d918b60927c8/flup/trunk@1788
- Message:
Update test/example code. (No use binding *:8009 if allowedServers doesn't
allow an external connection.)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r14 |
r16 |
|
| 191 | 191 | # Explicitly set bindAddress to *:8009 for testing. |
|---|
| 192 | 192 | WSGIServer(test_app, |
|---|
| 193 | | bindAddress=('', 8009), |
|---|
| | 193 | bindAddress=('', 8009), allowedServers=None, |
|---|
| 194 | 194 | loggingLevel=logging.DEBUG).run() |
|---|
| r14 |
r16 |
|
| 189 | 189 | # Explicitly set bindAddress to *:8009 for testing. |
|---|
| 190 | 190 | WSGIServer(test_app, |
|---|
| 191 | | bindAddress=('', 8009), |
|---|
| | 191 | bindAddress=('', 8009), allowedServers=None, |
|---|
| 192 | 192 | loggingLevel=logging.DEBUG).run() |
|---|