Bug 710396 - Call server_close() after shutdown() to force unbinding, a=test-only, DONTBUILD

This commit is contained in:
Jonathan Griffin 2011-12-13 14:11:42 -08:00
parent c6a4e51c62
commit 577f3f73bb

View File

@ -132,6 +132,7 @@ class MozHttpd(object):
def stop(self):
if self.httpd:
self.httpd.shutdown()
self.httpd.server_close()
__del__ = stop