Create a server instance and serve forever until stop() is called.
(self)
| 576 | self.server.shutdown() |
| 577 | |
| 578 | def run(self): |
| 579 | """Create a server instance and serve forever until stop() is called.""" |
| 580 | # Start the server's main loop (this blocks until shutdown() is called) |
| 581 | self.server.serve_forever() |
| 582 | |
| 583 | |
| 584 | # This will hold the ID for each worker process if running in parallel mode, |
nothing calls this directly
no test coverage detected