diff --git a/WHATS_NEW b/WHATS_NEW index b883bde9e..4b71402fa 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,5 +1,6 @@ Version 2.02.99 - =================================== + Hardcode use_lvmetad=0 if cluster locking used and issue a warning msg. Avoid reading mirrors with failed devices in its mirrored log. Avoid reading from mirrors that have failed devices if they block I/O. Change lvs heading Copy% to Cpy%Sync and print RAID4/5/6 sync% there too. diff --git a/lib/commands/toolcontext.c b/lib/commands/toolcontext.c index 1dd23bf4f..8da96e494 100644 --- a/lib/commands/toolcontext.c +++ b/lib/commands/toolcontext.c @@ -416,7 +416,8 @@ static int _process_config(struct cmd_context *cmd) if (find_config_tree_int(cmd, "global/locking_type", 1) != 3) lvmetad_set_active(find_config_tree_int(cmd, "global/use_lvmetad", 0)); else { - log_warn("WARNING: use_lvmetad overriden to 0 due to locking_type 3"); + log_warn("WARNING: configuration setting use_lvmetad overriden to 0 due to locking_type 3. " + "Clustered environment not supported by lvmetad yet."); lvmetad_set_active(0); } lvmetad_init(cmd);