Changes between Initial Version and Version 1 of Ticket #27596, comment 7
- Timestamp:
- Dec 14, 2016, 8:31:32 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27596, comment 7
initial v1 1 1 Actually, I think I've found it: 2 2 3 in 1.9.12 we see:4 3 in 1.9.12: 4 {{{ 5 5 def _create_server(self, port): 6 6 return WSGIServer((self.host, port), QuietWSGIRequestHandler) 7 8 in 1.10.x we see this: 7 }}} 8 in 1.10.x: 9 {{{ 9 10 def _create_server(self, port): 10 11 return WSGIServer((self.host, port), QuietWSGIRequestHandler, allow_reuse_address=False) 11 12 When I remove the "allow_reuse_address=False" its removes the bug altogether 13 14 15 12 }}} 13 Removing `allow_reuse_address=False` eliminates the bug.