Opened 19 years ago
Last modified 17 years ago
#2782 closed defect
mod_python's request.META["SERVER_PORT"] is always set to 0 — at Version 1
| Reported by: | anonymous | Owned by: | Adrian Holovaty |
|---|---|---|---|
| Component: | Core (Other) | Version: | |
| Severity: | normal | Keywords: | |
| Cc: | Triage Stage: | Accepted | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description (last modified by )
I have found small bug in core/handlers/modpython.py.
Namely, request.META["SERVER_PORT"] under mod_python is always set to 0.
This is because it's set to self._req.server.port in modpython.py, on line 88.
mod_python's docs say --
port
Integer. TCP/IP port number. Same as CGI SERVER_PORT. This member
appears to be 0 on Apache 2.0, look at req.connection.local_addr
instead (Read-Only)
So I think it should be:
'SERVER_PORT': str(self._req.connection.local_addr[1]),
Because self._req.connection.local_addr[1] is an integer, I think it should be string as other headers are.
Note:
See TracTickets
for help on using tickets.
Fixed formatting of description.