Changes between Initial Version and Version 1 of Ticket #27596, comment 7


Ignore:
Timestamp:
Dec 14, 2016, 8:31:32 AM (7 years ago)
Author:
Tim Graham

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27596, comment 7

    initial v1  
    11Actually, I think I've found it:
    22
    3 in 1.9.12 we see:
    4 
     3in 1.9.12:
     4{{{
    55def _create_server(self, port):
    66        return WSGIServer((self.host, port), QuietWSGIRequestHandler)
    7 
    8 in 1.10.x we see this:
     7}}}
     8in 1.10.x:
     9{{{
    910def _create_server(self, port):
    1011        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}}}
     13Removing `allow_reuse_address=False` eliminates the bug.
Back to Top