Stops the HTTP server.
(httpd)
| 141 | return httpd, server_thread |
| 142 | |
| 143 | def stop_interaction_api(httpd): |
| 144 | """ |
| 145 | Stops the HTTP server. |
| 146 | """ |
| 147 | print("Shutting down server...") |
| 148 | httpd.shutdown() # Stop serve_forever() |
| 149 | httpd.server_close() # Close the underlying socket |
| 150 | print("Server stopped.") |
| 151 |
no outgoing calls
no test coverage detected