diff --git a/django/core/servers/basehttp.py b/django/core/servers/basehttp.py index 5c281b9c24..111b5818cd 100644 --- a/django/core/servers/basehttp.py +++ b/django/core/servers/basehttp.py @@ -65,11 +65,6 @@ class WSGIServer(simple_server.WSGIServer): self.allow_reuse_address = allow_reuse_address super().__init__(*args, **kwargs) - def server_bind(self): - """Override server_bind to store the server name.""" - super().server_bind() - self.setup_environ() - def handle_error(self, request, client_address): if is_broken_pipe_error(): logger.info("- Broken pipe from %s\n", client_address)