From 14557c7455508a498acd7c08e536947604f49bfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Sat, 2 Mar 2019 17:27:47 +0200 Subject: [PATCH] MXS-2357: Explain runtime changes in `alter service` The help output now states that a subset of the routers support runtime configuration changes to all parameters. --- maxctrl/lib/alter.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/maxctrl/lib/alter.js b/maxctrl/lib/alter.js index 32a952774..2c6294e26 100644 --- a/maxctrl/lib/alter.js +++ b/maxctrl/lib/alter.js @@ -93,7 +93,10 @@ exports.builder = function(yargs) { }) .command('service ', 'Alter service parameters', function(yargs) { return yargs.epilog('To display the service parameters, execute `show service `. ' + - 'The following list of parameters can be altered at runtime:\n\n' + JSON.stringify(service_params, null, 4)) + 'Some routers support runtime configuration changes to all parameters. ' + + 'Currently all readconnroute, readwritesplit and schemarouter parameters ' + + 'can be changed at runtime. In addition to module specific parameters, ' + + 'the following list of common service parameters can be altered at runtime:\n\n' + JSON.stringify(service_params, null, 4)) .usage('Usage: alter service ') }, function(argv) { maxctrl(argv, function(host) {