mirror of
https://github.com/minio/minio.git
synced 2025-04-04 11:50:36 -04:00
Fix liveness check for NAS gateway (#7142)
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 ```
This commit is contained in:
parent
8ee8ad777c
commit
964e354d06
@ -17,6 +17,8 @@
|
|||||||
package nas
|
package nas
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
"github.com/minio/cli"
|
"github.com/minio/cli"
|
||||||
minio "github.com/minio/minio/cmd"
|
minio "github.com/minio/minio/cmd"
|
||||||
"github.com/minio/minio/pkg/auth"
|
"github.com/minio/minio/pkg/auth"
|
||||||
@ -121,6 +123,12 @@ func (n *nasObjects) IsListenBucketSupported() bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (n *nasObjects) StorageInfo(ctx context.Context) minio.StorageInfo {
|
||||||
|
sinfo := n.ObjectLayer.StorageInfo(ctx)
|
||||||
|
sinfo.Backend.Type = minio.Unknown
|
||||||
|
return sinfo
|
||||||
|
}
|
||||||
|
|
||||||
// nasObjects implements gateway for Minio and S3 compatible object storage servers.
|
// nasObjects implements gateway for Minio and S3 compatible object storage servers.
|
||||||
type nasObjects struct {
|
type nasObjects struct {
|
||||||
minio.ObjectLayer
|
minio.ObjectLayer
|
||||||
|
Loading…
x
Reference in New Issue
Block a user