diff --git a/WHATS_NEW b/WHATS_NEW index 8dc1ea6e1..23a369b1a 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,5 +1,6 @@ Version 2.02.63 - ================================ + Disable long living process flag in lvm2app. Fix pvcreate device md filter check. Suppress repeated errors about the same missing PV uuids. Bypass full device scans when using internally-cached VG metadata. diff --git a/liblvm/lvm_base.c b/liblvm/lvm_base.c index ac9469288..733d4d54d 100644 --- a/liblvm/lvm_base.c +++ b/liblvm/lvm_base.c @@ -32,7 +32,8 @@ lvm_t lvm_init(const char *system_dir) /* create context */ /* FIXME: split create_toolcontext */ - cmd = create_toolcontext(1, system_dir); + /* FIXME: make all globals configurable */ + cmd = create_toolcontext(0, system_dir); if (!cmd) return NULL;