mirror of
https://github.com/minio/minio.git
synced 2025-04-06 04:40:38 -04:00
parent
0ea5c9d8e8
commit
0fee993a4b
@ -19,6 +19,7 @@ package cmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/gorilla/mux"
|
"github.com/gorilla/mux"
|
||||||
@ -149,8 +150,10 @@ func (a adminAPIHandlers) StatusPool(w http.ResponseWriter, r *http.Request) {
|
|||||||
|
|
||||||
idx := globalEndpoints.GetPoolIdx(v)
|
idx := globalEndpoints.GetPoolIdx(v)
|
||||||
if idx == -1 {
|
if idx == -1 {
|
||||||
|
apiErr := toAdminAPIErr(ctx, errInvalidArgument)
|
||||||
|
apiErr.Description = fmt.Sprintf("specified pool '%s' not found, please specify a valid pool", v)
|
||||||
// We didn't find any matching pools, invalid input
|
// We didn't find any matching pools, invalid input
|
||||||
writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errInvalidArgument), r.URL)
|
writeErrorResponseJSON(ctx, w, apiErr, r.URL)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -921,7 +921,7 @@ func (z *erasureServerPools) Status(ctx context.Context, idx int) (PoolStatus, e
|
|||||||
|
|
||||||
pi, err := z.getDecommissionPoolSpaceInfo(idx)
|
pi, err := z.getDecommissionPoolSpaceInfo(idx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return PoolStatus{}, errInvalidArgument
|
return PoolStatus{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
poolInfo := z.poolMeta.Pools[idx]
|
poolInfo := z.poolMeta.Pools[idx]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user