Replace MongoClient with MinioClient (was typo)
Use bucket_name instead of bucket in handleV1Health
This commit is contained in:
parent
28cc97dcee
commit
a3287768ad
2 changed files with 7 additions and 8 deletions
|
@ -148,13 +148,12 @@ func handleV1Health(c echo.Context) error {
|
|||
|
||||
message := make(map[string]interface{}, len(documents_buckets))
|
||||
|
||||
for _, bucket := range documents_buckets {
|
||||
|
||||
exists, err := client.BucketExists(bucket)
|
||||
for _, bucket_name := range documents_buckets {
|
||||
exists, err := client.BucketExists(bucket_name)
|
||||
if err != nil {
|
||||
return c.JSON(http.StatusInternalServerError, err)
|
||||
}
|
||||
message[bucket] = exists
|
||||
message[bucket_name] = exists
|
||||
}
|
||||
|
||||
return c.JSON(http.StatusOK, message)
|
||||
|
|
|
@ -11,7 +11,7 @@ import (
|
|||
type Client struct {
|
||||
Endpoint, AccessKeyID, SecretAccessKey string
|
||||
UseSSL bool
|
||||
MongoClient *minio.Client
|
||||
MinioClient *minio.Client
|
||||
Context context.Context
|
||||
}
|
||||
|
||||
|
@ -25,7 +25,7 @@ func NewClient(buckets []string, endpoint, accessKeyID, secretAccessKey string,
|
|||
}
|
||||
|
||||
// Initialize minio client object
|
||||
mongo_client, err := minio.New(endpoint, &minio.Options{
|
||||
minio_client, err := minio.New(endpoint, &minio.Options{
|
||||
Creds: credentials.NewStaticV4(accessKeyID, secretAccessKey, ""),
|
||||
Secure: useSSL,
|
||||
})
|
||||
|
@ -33,13 +33,13 @@ func NewClient(buckets []string, endpoint, accessKeyID, secretAccessKey string,
|
|||
return &c, err
|
||||
}
|
||||
|
||||
c.MongoClient = mongo_client
|
||||
c.MinioClient = minio_client
|
||||
|
||||
return &c, nil
|
||||
}
|
||||
|
||||
func (c *Client) BucketExists(bucketName string) (bool, error) {
|
||||
result, err := c.MongoClient.BucketExists(c.Context, bucketName)
|
||||
result, err := c.MinioClient.BucketExists(c.Context, bucketName)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue