Health check endpoint for monitoring Dash server status. Returns a simple "OK" response with HTTP 200 status.
(self)
| 1057 | ) |
| 1058 | |
| 1059 | def serve_health(self): |
| 1060 | """ |
| 1061 | Health check endpoint for monitoring Dash server status. |
| 1062 | Returns a simple "OK" response with HTTP 200 status. |
| 1063 | """ |
| 1064 | return self.backend.make_response("OK", status=200, mimetype="text/plain") |
| 1065 | |
| 1066 | def _get_worker_url(self) -> str: |
| 1067 | """Get the URL for the WebSocket worker script. |
nothing calls this directly
no test coverage detected