mirror of https://gitee.com/bigwinds/arangodb
Make /Target/CleanedServers writable.
This commit is contained in:
parent
8dd9ce47a0
commit
b348514d36
|
@ -1002,10 +1002,11 @@ actions.defineHttp({
|
|||
///
|
||||
/// @ RESTDESCRIPTION sets the number of coordinators and DBServers desired,
|
||||
/// which are stored in `/Target` in the agency. A body of the form
|
||||
/// { "numberOfCoordinators": 12, "numberOfDBServers": 12 }
|
||||
/// { "numberOfCoordinators": 12, "numberOfDBServers": 12,
|
||||
/// "cleanedServers": [] }
|
||||
/// must be supplied. Either one of the values can be left out and will
|
||||
/// then not be changed. Either value can be `null` to indicate that the
|
||||
/// cluster cannot be scaled.
|
||||
/// then not be changed. Either numeric value can be `null` to indicate
|
||||
/// that the cluster cannot be scaled.
|
||||
///
|
||||
/// @ RESTRETURNCODES
|
||||
///
|
||||
|
@ -1063,7 +1064,7 @@ actions.defineHttp({
|
|||
{numberOfCoordinators: nrCoordinators,
|
||||
numberOfDBServers: nrDBServers,
|
||||
cleanedServers});
|
||||
} else {
|
||||
} else { // PUT
|
||||
var body = actions.getJsonBody(req, res);
|
||||
if (body === undefined) {
|
||||
return;
|
||||
|
@ -1096,6 +1097,17 @@ actions.defineHttp({
|
|||
catch (e2) {
|
||||
ok = false;
|
||||
}
|
||||
try {
|
||||
if (body.hasOwnProperty("cleanedServers") &&
|
||||
typeof body.cleanedServers === "object" &&
|
||||
Array.isArray(body.cleanedServers)) {
|
||||
ArangoAgency.set("Target/CleanedServers",
|
||||
body.cleanedServers);
|
||||
}
|
||||
}
|
||||
catch (e3) {
|
||||
ok = false;
|
||||
}
|
||||
if (!ok) {
|
||||
actions.resultError(req, res, actions.HTTP_SERVICE_UNAVAILABLE,
|
||||
"Cannot write to agency.");
|
||||
|
|
Loading…
Reference in New Issue