mirror of
https://github.com/minio/minio.git
synced 2025-02-09 04:38:09 -05:00
Current master throws '503' unavailable for liveness check ``` ~ curl -v http://localhost:9000/minio/health/live > GET /minio/health/live HTTP/1.1 ... ... < HTTP/1.1 503 Service Unavailable ``` With this fix liveness check returns error appropriately ``` ~ curl -v http://localhost:9000/minio/health/live > GET /minio/health/live HTTP/1.1 ... ... < HTTP/1.1 200 OK ```