In 2.7-dev2, "stats bind-process" was removed by commit
94f763b5e
("MEDIUM: config: remove deprecated "bind-process" directives from
frontends") and an error message indicates that it's no more supported.
However it says "stats" is not supported instead of "stats bind-process",
making it a bit confusing.
This should be backported to 2.7.
global.cli_fe->maxconn = maxconn;
}
else if (strcmp(args[1], "bind-process") == 0) {
- memprintf(err, "'%s' is not supported anymore.", args[0]);
+ memprintf(err, "'%s %s' is not supported anymore.", args[0], args[1]);
return -1;
}
else {