diff options
Diffstat (limited to 'ctdb/tools/ctdb.c')
-rw-r--r-- | ctdb/tools/ctdb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ctdb/tools/ctdb.c b/ctdb/tools/ctdb.c index 4654f3cf43..b420dcd23a 100644 --- a/ctdb/tools/ctdb.c +++ b/ctdb/tools/ctdb.c @@ -4839,6 +4839,11 @@ static int control_setvar(struct ctdb_context *ctdb, int argc, const char **argv DEBUG(DEBUG_ERR, ("Unable to set tunable variable '%s'\n", name)); return -1; } + if (ret == 1) { + DEBUG(DEBUG_WARNING, + ("Setting obsolete tunable variable '%s'\n", + name)); + } return 0; } |