Skip to content

Instantly share code, notes, and snippets.

@smoser
Last active June 19, 2023 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smoser/3107dafec490c0f4d9bf9faf02327f04 to your computer and use it in GitHub Desktop.
Save smoser/3107dafec490c0f4d9bf9faf02327f04 to your computer and use it in GitHub Desktop.
building and testing lvm2 package with autopkgtest

building and testing lvm2 package

I'm working with lvm2 package in order to get some autopkgtest tests run on ubuntu before merging.

I've submitted a pull request to debian at lvm2/#6.

My post to the linux-lvm2 mailing list asking about stability of the tests can be seen here.

building lvm2

lvm2 in debian uses gbp to build. Changes are made directly to the source and a debian delta patch is generated (debian/source/format shows 3.0 (gitarchive)).

Build the package locally with:

  • build source package

    gbp buildpackage  --git-ignore-branch -S -d
    

    it writes content into ../

  • I build the binary package with sbuild, but any other clean way should be sufficient.

    sbuild --dist=jammy --arch=amd64  --arch-all lvm2_2.03.16-3.dsc
    

building autopkg test vm

I was able to build autopkg an image for autopkg test in my environment with:

proxy python3 ./autopkgtest-buildvm-ubuntu-cloud --image=jammy-server-cloudimg-amd64.img --verbose \
    --release=jammy --ram-size=4096

The '--image=' flag was added locally by me just to avoid having it re-download the pristine image (see autopkgtest-buildvm-ubuntu-cloud.diff below).

The 'proxy' command above just sets http_proxy and https_proxy correctly for the environment.

running autopkg test

  • Run the autopkg tests with the result of a sbuild build.

    time autopkgtest --shell-fail  \
        /tmp/lvm2-test/*.deb /tmp/lvm2-test/lvm2_2.03.16-3_source.changes  \
        --output-dir=results-1 -- \
        qemu autopkgtest-jammy-amd64.img --cpus=2 --ram-size=4096 --show-boot 
    

The whole 'autopkgtest' invocation above takes about 65 minutes to run on my system.

  • To run all the testsuite tests, you can add the parameter --setup-commands="touch /run/lvm2-testsuite-skips" to the autopkgtest command above.

running the tests / debian/tests layout

The merge request basically does:

  • creates an lvm2-testsuite package that depends on lvm2 runtime packages and some utilities used by the testsuite (debian/control)
  • add control that lists the 'testsuite' test and its dependency on the 'lvm2-testsuite' package (file debian/tests/control)
  • Add a shell script runner (debian/tests/testsuite) that is run by autopkgtest without any arguments. It will
    • install the linux-modules package to get access to kernel modules like 'scsi_debug' needed for the test.
    • stop and mask the systemd units as indicated by lvm/TESTING.
    • run lvm2-testsuite with --skip for each test listed in debian/tests/testsuite-skips.
  • Add debian/tests/testsuite-skips. this just lists the tests to skip and a reason for why to skip them. Format is line based with test/excuse. '#' is the comment character, blank lines are ignored.

So if you wanted to run these tests outside of autopkgtest, it would mainly consist of:

  • apt-get install lvm2-testsuite
  • apt-get install linux-modules-$(uname -r)
  • ./debian/tests/testsuite
Add --image argument to autopkgtest-buildvm-ubuntu-cloud.
This just adds '--image' to avoid re-downloading the cloud image when iterating locally.
--- /usr/bin/autopkgtest-buildvm-ubuntu-cloud 2023-03-14 15:04:39.000000000 -0700
+++ ./autopkgtest-buildvm-ubuntu-cloud 2023-06-19 09:39:16.722678331 -0700
@@ -95,6 +95,8 @@
parser.add_argument('-r', '--release', metavar='CODENAME',
default=get_default_release(),
help='Ubuntu release code name (default: %(default)s)')
+ parser.add_argument('--image', metavar='IMAGE', default=None,
+ help='Use this IMAGE as if youd downloaded it')
parser.add_argument('-m', '--mirror', metavar='URL', default=None,
help='Use this mirror for apt (default: http://archive.ubuntu.com/ubuntu)')
parser.add_argument('-p', '--proxy', metavar='URL', default=default_proxy,
@@ -419,8 +421,14 @@
sys.stderr.write('Unable to determine default Ubuntu release\n')
sys.exit(1)
-image = download_image(args.cloud_image_url, args.release, args.arch)
+if args.image is None:
+ image = download_image(args.cloud_image_url, args.release, args.arch)
+else:
+ image = os.path.join(workdir, os.path.basename(args.image))
+ shutil.copy(args.image, image)
+
resize_image(image, args.disk_size)
+
if args.mirror:
mirror = args.mirror
else:
#!/usr/bin/python
#
# After running autopkgtests above, point 'summary.py' at the results of one or more result sets.
# $ python3 ./summary.py results-*/artifacts/testsuite-results/list
# will output a summary like (S=Skip, F=Fail, P=Pass, W=Warnings).
# The line output below was produced by the command above when there were 6 'results-*' directories.
# S F P W #test
# 0 0 6 0 shell/000-basic.sh
# it will only list tests that were run or skipped by the testsuite itself.
# tests passed to '--skip' will not be shown as they do not appear in the 'list' file output.
import sys
tests = {}
for f in sys.argv[1:]:
with open(f, "r") as fp:
for line in fp.readlines():
test, result = line.split()
test = test.replace("udev-vanilla:", "")
if test not in tests:
tests[test] = {'skipped': 0, 'failed': 0, 'passed': 0, 'warnings': 0}
tests[test][result] += 1
fmt = "%s %s %s %s %s"
print(fmt %("S", "F", "P", "W", "#test"))
for test, data in tests.items():
print(fmt %
(data['skipped'], data['failed'], data['passed'], data['warnings'], test))
INFO: Running kernel 5.15.0-73-generic. modules installed from linux-modules-5.15.0-73-generic
not skipping any tests
execute: systemctl mask dm-event.service
Created symlink /etc/systemd/system/dm-event.service → /dev/null.
execute: systemctl stop dm-event.service
execute: systemctl mask dm-event.socket
Created symlink /etc/systemd/system/dm-event.socket → /dev/null.
execute: systemctl stop dm-event.socket
execute: systemctl mask lvm2-lvmpolld.service
Created symlink /etc/systemd/system/lvm2-lvmpolld.service → /dev/null.
execute: systemctl stop lvm2-lvmpolld.service
execute: systemctl mask lvm2-lvmpolld.socket
Created symlink /etc/systemd/system/lvm2-lvmpolld.socket → /dev/null.
execute: systemctl stop lvm2-lvmpolld.socket
execute: systemctl mask lvm2-monitor.service
Created symlink /etc/systemd/system/lvm2-monitor.service → /dev/null.
execute: systemctl stop lvm2-monitor.service
execute: systemctl mask lvm2-lvmdbusd.service
Created symlink /etc/systemd/system/lvm2-lvmdbusd.service → /dev/null.
execute: systemctl stop lvm2-lvmdbusd.service
execute: lvm2-testsuite --flavours udev-vanilla --outdir results
running 396 tests
command failed [1]: lvm2-testsuite --flavours udev-vanilla --outdir results
result 1 in 4006s
FATAL: run-testsuite failed
This file has been truncated, but you can view the full file.
| [ 0:00] Kernel is Linux autopkgtest 5.15.0-73-generic #80-Ubuntu SMP Mon May 15 15:18:26 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
| [ 0:00] Selinux mode is not installed.
| [ 0:00] total used free shared buff/cache available
| [ 0:00] Mem: 3923 158 3119 0 646 3534
| [ 0:00] Swap: 0 0 0
| [ 0:00] Filesystem Size Used Avail Use% Mounted on
| [ 0:00] tmpfs 393M 696K 392M 1% /run
| [ 0:00] /dev/vda1 9.6G 2.6G 7.0G 27% /
| [ 0:00] tmpfs 2.0G 0 2.0G 0% /dev/shm
| [ 0:00] tmpfs 5.0M 0 5.0M 0% /run/lock
| [ 0:00] /dev/vda15 105M 6.1M 99M 6% /boot/efi
| [ 0:00] autopkgtest 665G 424G 208G 68% /run/autopkgtest/shared
| [ 0:00] tmpfs 393M 0 393M 0% /run/user/0
| [ 0:00] @TESTDIR=/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u
| [ 0:00] @PREFIX=LVMTEST15146
| [ 0:00] ## LVMCONF: activation {
| [ 0:00] ## LVMCONF: checks = 1
| [ 0:00] ## LVMCONF: monitoring = 0
| [ 0:00] ## LVMCONF: polling_interval = 1
| [ 0:00] ## LVMCONF: raid_region_size = 512
| [ 0:00] ## LVMCONF: retry_deactivation = 1
| [ 0:00] ## LVMCONF: snapshot_autoextend_percent = 50
| [ 0:00] ## LVMCONF: snapshot_autoextend_threshold = 50
| [ 0:00] ## LVMCONF: verify_udev_operations = 0
| [ 0:00] ## LVMCONF: }
| [ 0:00] ## LVMCONF: allocation {
| [ 0:00] ## LVMCONF: vdo_slab_size_mb = 128
| [ 0:00] ## LVMCONF: wipe_signatures_when_zeroing_new_lvs = 0
| [ 0:00] ## LVMCONF: zero_metadata = 0
| [ 0:00] ## LVMCONF: }
| [ 0:00] ## LVMCONF: backup {
| [ 0:00] ## LVMCONF: archive = 0
| [ 0:00] ## LVMCONF: backup = 0
| [ 0:00] ## LVMCONF: }
| [ 0:00] ## LVMCONF: devices {
| [ 0:00] ## LVMCONF: cache_dir = "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc"
| [ 0:00] ## LVMCONF: default_data_alignment = 1
| [ 0:00] ## LVMCONF: dir = "/dev"
| [ 0:00] ## LVMCONF: filter = "a|.*|"
| [ 0:00] ## LVMCONF: global_filter = [ "a|/dev/mapper/LVMTEST15146.*pv[0-9_]*$|", "r|.*|" ]
| [ 0:00] ## LVMCONF: md_component_detection = 0
| [ 0:00] ## LVMCONF: scan = "/dev"
| [ 0:00] ## LVMCONF: sysfs_scan = 1
| [ 0:00] ## LVMCONF: use_devicesfile = 0
| [ 0:00] ## LVMCONF: write_cache_state = 0
| [ 0:00] ## LVMCONF: }
| [ 0:00] ## LVMCONF: global {
| [ 0:00] ## LVMCONF: abort_on_internal_errors = 1
| [ 0:00] ## LVMCONF: cache_check_executable = "/usr/sbin/cache_check"
| [ 0:00] ## LVMCONF: cache_dump_executable = "/usr/sbin/cache_dump"
| [ 0:00] ## LVMCONF: cache_repair_executable = "/usr/sbin/cache_repair"
| [ 0:00] ## LVMCONF: detect_internal_vg_cache_corruption = 1
| [ 0:00] ## LVMCONF: fallback_to_local_locking = 0
| [ 0:00] ## LVMCONF: locking_type=1
| [ 0:00] ## LVMCONF: notify_dbus = 0
| [ 0:00] ## LVMCONF: si_unit_consistency = 1
| [ 0:00] ## LVMCONF: thin_check_executable = "/usr/sbin/thin_check"
| [ 0:00] ## LVMCONF: thin_dump_executable = "/usr/sbin/thin_dump"
| [ 0:00] ## LVMCONF: thin_repair_executable = "/usr/sbin/thin_repair"
| [ 0:00] ## LVMCONF: use_lvmlockd = 0
| [ 0:00] ## LVMCONF: use_lvmpolld = 0
| [ 0:00] ## LVMCONF: }
| [ 0:00] ## LVMCONF: log {
| [ 0:00] ## LVMCONF: activation = 1
| [ 0:00] ## LVMCONF: file = "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/debug.log"
| [ 0:00] ## LVMCONF: indent = 1
| [ 0:00] ## LVMCONF: level = 9
| [ 0:00] ## LVMCONF: overwrite = 1
| [ 0:00] ## LVMCONF: syslog = 0
| [ 0:00] ## LVMCONF: verbose = 0
| [ 0:00] ## LVMCONF: }
| [ 0:00] <======== Processing test: "dbustest.sh" ========>
| [ 0:00]
| [ 0:00] # Unsupported with valgrid testing
| [ 0:00] test "${LVM_VALGRIND:-0}" -eq 0 || skip "Unsupported with valgrind"
| [ 0:00] #dbustest.sh:21+ test 0 -eq 0
| [ 0:00]
| [ 0:00] # NOTE: Some tests, namely anything with vdo, and
| [ 0:00] # api/dbus_test_lv_interface_cache_lv.sh, require larger PVs
| [ 0:00] aux prepare_pvs 6 6400
| [ 0:00] #dbustest.sh:25+ aux prepare_pvs 6 6400
| [ 0:00] ## preparing loop device....ok (/dev/loop0)
| [ 0:00] 6,591,102364511,-;loop0: detected capacity change from 0 to 78649344
| [ 0:00] ## preparing 6 devices...ok
| [ 0:01] Physical volume "/dev/mapper/LVMTEST15146pv1" successfully created.
| [ 0:01] Physical volume "/dev/mapper/LVMTEST15146pv2" successfully created.
| [ 0:01] Physical volume "/dev/mapper/LVMTEST15146pv3" successfully created.
| [ 0:01] Physical volume "/dev/mapper/LVMTEST15146pv4" successfully created.
| [ 0:01] Physical volume "/dev/mapper/LVMTEST15146pv5" successfully created.
| [ 0:01] Physical volume "/dev/mapper/LVMTEST15146pv6" successfully created.
| [ 0:01]
| [ 0:01] # Required by test_nesting:
| [ 0:01] aux extend_filter_LVMTEST
| [ 0:01] #dbustest.sh:28+ aux extend_filter_LVMTEST
| [ 0:01] ## LVMCONF: activation {
| [ 0:01] ## LVMCONF: checks = 1
| [ 0:01] ## LVMCONF: monitoring = 0
| [ 0:01] ## LVMCONF: polling_interval = 1
| [ 0:01] ## LVMCONF: raid_region_size = 512
| [ 0:01] ## LVMCONF: retry_deactivation = 1
| [ 0:01] ## LVMCONF: snapshot_autoextend_percent = 50
| [ 0:01] ## LVMCONF: snapshot_autoextend_threshold = 50
| [ 0:01] ## LVMCONF: verify_udev_operations = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01] ## LVMCONF: allocation {
| [ 0:01] ## LVMCONF: vdo_slab_size_mb = 128
| [ 0:01] ## LVMCONF: wipe_signatures_when_zeroing_new_lvs = 0
| [ 0:01] ## LVMCONF: zero_metadata = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01] ## LVMCONF: backup {
| [ 0:01] ## LVMCONF: archive = 0
| [ 0:01] ## LVMCONF: backup = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01] ## LVMCONF: devices {
| [ 0:01] ## LVMCONF: cache_dir = "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc"
| [ 0:01] ## LVMCONF: default_data_alignment = 1
| [ 0:01] ## LVMCONF: dir = "/dev"
| [ 0:01] ## LVMCONF: filter = "a|.*|"
| [ 0:01] ## LVMCONF: global_filter = [ "a|/dev/LVMTEST15146|", "a|/dev/mapper/LVMTEST15146.*pv[0-9_]*$|", "r|.*|" ]
| [ 0:01] ## LVMCONF: md_component_detection = 0
| [ 0:01] ## LVMCONF: scan = "/dev"
| [ 0:01] ## LVMCONF: scan_lvs = 1
| [ 0:01] ## LVMCONF: sysfs_scan = 1
| [ 0:01] ## LVMCONF: use_devicesfile = 0
| [ 0:01] ## LVMCONF: write_cache_state = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01] ## LVMCONF: global {
| [ 0:01] ## LVMCONF: abort_on_internal_errors = 1
| [ 0:01] ## LVMCONF: cache_check_executable = "/usr/sbin/cache_check"
| [ 0:01] ## LVMCONF: cache_dump_executable = "/usr/sbin/cache_dump"
| [ 0:01] ## LVMCONF: cache_repair_executable = "/usr/sbin/cache_repair"
| [ 0:01] ## LVMCONF: detect_internal_vg_cache_corruption = 1
| [ 0:01] ## LVMCONF: fallback_to_local_locking = 0
| [ 0:01] ## LVMCONF: locking_type=1
| [ 0:01] ## LVMCONF: notify_dbus = 0
| [ 0:01] ## LVMCONF: si_unit_consistency = 1
| [ 0:01] ## LVMCONF: thin_check_executable = "/usr/sbin/thin_check"
| [ 0:01] ## LVMCONF: thin_dump_executable = "/usr/sbin/thin_dump"
| [ 0:01] ## LVMCONF: thin_repair_executable = "/usr/sbin/thin_repair"
| [ 0:01] ## LVMCONF: use_lvmlockd = 0
| [ 0:01] ## LVMCONF: use_lvmpolld = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01] ## LVMCONF: log {
| [ 0:01] ## LVMCONF: activation = 1
| [ 0:01] ## LVMCONF: file = "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/debug.log"
| [ 0:01] ## LVMCONF: indent = 1
| [ 0:01] ## LVMCONF: level = 9
| [ 0:01] ## LVMCONF: overwrite = 1
| [ 0:01] ## LVMCONF: syslog = 0
| [ 0:01] ## LVMCONF: verbose = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01]
| [ 0:01] # We need the lvmdbusd.profile for the daemon to utilize JSON
| [ 0:01] # output
| [ 0:01] aux prepare_profiles "lvmdbusd"
| [ 0:01] #dbustest.sh:32+ aux prepare_profiles lvmdbusd
| [ 0:01]
| [ 0:01] aux prepare_lvmdbusd
| [ 0:01] #dbustest.sh:34+ aux prepare_lvmdbusd
| [ 0:01] ## checking lvmdbusd is NOT running...ok
| [ 0:01] ## find lvmdbusd to use.../usr/sbin/lvmdbusd
| [ 0:01] ## preparing lvmdbusd...
| [ 0:01] ## LVMCONF: activation {
| [ 0:01] ## LVMCONF: checks = 1
| [ 0:01] ## LVMCONF: monitoring = 0
| [ 0:01] ## LVMCONF: polling_interval = 1
| [ 0:01] ## LVMCONF: raid_region_size = 512
| [ 0:01] ## LVMCONF: retry_deactivation = 1
| [ 0:01] ## LVMCONF: snapshot_autoextend_percent = 50
| [ 0:01] ## LVMCONF: snapshot_autoextend_threshold = 50
| [ 0:01] ## LVMCONF: verify_udev_operations = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01] ## LVMCONF: allocation {
| [ 0:01] ## LVMCONF: vdo_slab_size_mb = 128
| [ 0:01] ## LVMCONF: wipe_signatures_when_zeroing_new_lvs = 0
| [ 0:01] ## LVMCONF: zero_metadata = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01] ## LVMCONF: backup {
| [ 0:01] ## LVMCONF: archive = 0
| [ 0:01] ## LVMCONF: backup = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01] ## LVMCONF: devices {
| [ 0:01] ## LVMCONF: cache_dir = "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc"
| [ 0:01] ## LVMCONF: default_data_alignment = 1
| [ 0:01] ## LVMCONF: dir = "/dev"
| [ 0:01] ## LVMCONF: filter = "a|.*|"
| [ 0:01] ## LVMCONF: global_filter = [ "a|/dev/LVMTEST15146|", "a|/dev/mapper/LVMTEST15146.*pv[0-9_]*$|", "r|.*|" ]
| [ 0:01] ## LVMCONF: md_component_detection = 0
| [ 0:01] ## LVMCONF: scan = "/dev"
| [ 0:01] ## LVMCONF: scan_lvs = 1
| [ 0:01] ## LVMCONF: sysfs_scan = 1
| [ 0:01] ## LVMCONF: use_devicesfile = 0
| [ 0:01] ## LVMCONF: write_cache_state = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01] ## LVMCONF: global {
| [ 0:01] ## LVMCONF: abort_on_internal_errors = 1
| [ 0:01] ## LVMCONF: cache_check_executable = "/usr/sbin/cache_check"
| [ 0:01] ## LVMCONF: cache_dump_executable = "/usr/sbin/cache_dump"
| [ 0:01] ## LVMCONF: cache_repair_executable = "/usr/sbin/cache_repair"
| [ 0:01] ## LVMCONF: detect_internal_vg_cache_corruption = 1
| [ 0:01] ## LVMCONF: fallback_to_local_locking = 0
| [ 0:01] ## LVMCONF: locking_type=1
| [ 0:01] ## LVMCONF: notify_dbus = 1
| [ 0:01] ## LVMCONF: si_unit_consistency = 1
| [ 0:01] ## LVMCONF: thin_check_executable = "/usr/sbin/thin_check"
| [ 0:01] ## LVMCONF: thin_dump_executable = "/usr/sbin/thin_dump"
| [ 0:01] ## LVMCONF: thin_repair_executable = "/usr/sbin/thin_repair"
| [ 0:01] ## LVMCONF: use_lvmlockd = 0
| [ 0:01] ## LVMCONF: use_lvmpolld = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01] ## LVMCONF: log {
| [ 0:01] ## LVMCONF: activation = 1
| [ 0:01] ## LVMCONF: file = "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/debug.log"
| [ 0:01] ## LVMCONF: indent = 1
| [ 0:01] ## LVMCONF: level = 9
| [ 0:01] ## LVMCONF: overwrite = 1
| [ 0:01] ## LVMCONF: syslog = 0
| [ 0:01] ## LVMCONF: verbose = 0
| [ 0:01] ## LVMCONF: }
| [ 0:01] ## checking lvmdbusd IS running...ok
| [ 0:02]
| [ 0:02] # Example for testing individual test:
| [ 0:02] #"$TESTOLDPWD/dbus/lvmdbustest.py" -v TestDbusService.test_lv_interface_cache_lv
| [ 0:02] #"$TESTOLDPWD/dbus/lvmdbustest.py" -v TestDbusService.test_pv_symlinks
| [ 0:02]
| [ 0:02] "$TESTOLDPWD/dbus/lvmdbustest.py" -v
| [ 0:02] #dbustest.sh:40+ /usr/share/lvm2-testsuite/dbus/lvmdbustest.py -v
| [ 0:02]
| [ 0:02] *** Testing fork & exec & lvm shell mode ***
| [ 0:02]
| [ 0:02] Successfully changed execution mode to "forking & exec'ing"
| [ 0:02] test_cache_lv_create (__main__.TestDbusService) ... ok
| [ 0:07] test_cache_lv_rename (__main__.TestDbusService)
| [ 0:07] Make sure that if we rename a cache lv that we correctly handle the ... ok
| [ 0:10] test_cache_pool_create (__main__.TestDbusService) ... ok
| [ 0:11] test_external_lv_create (__main__.TestDbusService) ... ok
| [ 0:12] test_external_pv_create (__main__.TestDbusService) ... ok
| [ 0:12] test_external_vg_create (__main__.TestDbusService) ... ok
| [ 0:13] test_invalid_names (__main__.TestDbusService) ... ok
| [ 0:13] test_invalid_tags (__main__.TestDbusService) ... ok
| [ 0:14] test_job_handling (__main__.TestDbusService) ... ok
| [ 0:14] test_job_handling_timer (__main__.TestDbusService) ... Skipping test_job_handling_timer on loopback
| [ 0:14] ok
| [ 0:14] test_lookup_by_lvm_id (__main__.TestDbusService) ... ok
| [ 0:15] test_lv_activate_deactivate (__main__.TestDbusService) ... ok
| [ 0:17] test_lv_create (__main__.TestDbusService) ... ok
| [ 0:18] test_lv_create_job (__main__.TestDbusService) ... ok
| [ 0:19] test_lv_create_linear (__main__.TestDbusService) ... ok
| [ 0:19] test_lv_create_mirror (__main__.TestDbusService) ... ok
| [ 0:20] test_lv_create_pv_specific (__main__.TestDbusService) ... ok
| [ 0:21] test_lv_create_raid (__main__.TestDbusService) ... ok
| [ 0:22] 6,592,123340505,-;async_tx: api initialized (async)
| [ 0:22] 6,593,123352053,-;device-mapper: raid: Loading target version 1.15.1
| [ 0:22] 6,594,123482493,-;device-mapper: raid: Superblocks created for new raid set
| [ 0:22] 5,595,123487282,-;md/raid:mdX: not clean -- starting background reconstruction
| [ 0:22] 6,596,123487306,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 0:22] 6,597,123487308,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 0:22] 6,598,123487309,-;md/raid:mdX: device dm-11 operational as raid disk 2
| [ 0:22] 6,599,123497130,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 0:22] 3,600,123513950,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 0:22] 3,601,123516445,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 0:22] 4,602,123530513,-;mdX: bitmap file is out of date, doing full recovery
| [ 0:22] 6,603,123534221,-;md: resync of RAID array mdX
| [ 0:22] 6,604,123640746,-;md: mdX: resync done.
| [ 0:22] test_lv_create_rounding (__main__.TestDbusService) ... ok
| [ 0:23] test_lv_create_striped (__main__.TestDbusService) ... ok
| [ 0:24] test_lv_create_thin_pool (__main__.TestDbusService) ... ok
| [ 0:25] test_lv_interface_cache_lv (__main__.TestDbusService) ... ok
| [ 0:36] 6,605,135621943,-;dm-11: detected capacity change from 8192 to 16384
| [ 0:36] 6,606,136210292,-;dm-11: detected capacity change from 16384 to 8192
| [ 0:36] 6,607,136716745,-;dm-12: detected capacity change from 65536 to 8192
| [ 0:36] test_lv_interface_plain_lv (__main__.TestDbusService) ... ok
| [ 0:44] 6,608,140615240,-;dm-6: detected capacity change from 16384 to 24576
| [ 0:44] 6,609,140907637,-;dm-6: detected capacity change from 24576 to 16384
| [ 0:44] 6,610,144313955,-;dm-8: detected capacity change from 8192 to 16384
| [ 0:44] 6,611,144728567,-;dm-8: detected capacity change from 16384 to 8192
| [ 0:44] 6,612,145055555,-;dm-9: detected capacity change from 16384 to 8192
| [ 0:44] test_lv_interface_thin_pool_lv (__main__.TestDbusService) ... ok
| [ 0:48] test_lv_interface_vdo_lv (__main__.TestDbusService) ... skipped 'vdo not supported'
| [ 0:48] test_lv_interface_vdo_pool_lv (__main__.TestDbusService) ... skipped 'vdo not supported'
| [ 0:48] test_lv_move (__main__.TestDbusService) ... ok
| [ 0:50] 6,613,151100118,-;dm-7: detected capacity change from 16384 to 8192
| [ 0:50] test_lv_on_thin_pool_rename (__main__.TestDbusService) ... ok
| [ 0:52] test_lv_remove (__main__.TestDbusService) ... ok
| [ 0:53] test_lv_rename (__main__.TestDbusService) ... ok
| [ 0:54] test_lv_resize (__main__.TestDbusService) ... ok
| [ 0:55] 6,614,156214851,-;dm-6: detected capacity change from 32768 to 40960
| [ 0:55] 6,615,156519032,-;dm-6: detected capacity change from 40960 to 24576
| [ 0:55] test_lv_resize_same (__main__.TestDbusService) ... ok
| [ 0:56] test_lv_snapshot (__main__.TestDbusService) ... ok
| [ 0:57] test_lv_tags (__main__.TestDbusService) ... ok
| [ 0:58] test_lv_thinpool_rename (__main__.TestDbusService) ... ok
| [ 1:00] test_meta_lv_data_lv_props (__main__.TestDbusService) ... ok
| [ 1:04] 6,616,162242238,-;device-mapper: raid: Superblocks created for new raid set
| [ 1:04] 5,617,162248878,-;md/raid:mdX: not clean -- starting background reconstruction
| [ 1:04] 6,618,162248917,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 1:04] 6,619,162248920,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 1:04] 6,620,162248921,-;md/raid:mdX: device dm-11 operational as raid disk 2
| [ 1:04] 6,621,162256437,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:04] 3,622,162265871,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:04] 3,623,162267972,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:04] 4,624,162276163,-;mdX: bitmap file is out of date, doing full recovery
| [ 1:04] 6,625,162282343,-;md: resync of RAID array mdX
| [ 1:04] 6,626,162341164,-;md: mdX: resync done.
| [ 1:04] 6,627,162570239,-;device-mapper: raid: Superblocks created for new raid set
| [ 1:04] 5,628,162580148,-;md/raid:mdX: not clean -- starting background reconstruction
| [ 1:04] 6,629,162580199,-;md/raid:mdX: device dm-14 operational as raid disk 0
| [ 1:04] 6,630,162580201,-;md/raid:mdX: device dm-16 operational as raid disk 1
| [ 1:04] 6,631,162580203,-;md/raid:mdX: device dm-18 operational as raid disk 2
| [ 1:04] 6,632,162587602,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:04] 3,633,162602340,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:04] 3,634,162604568,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:04] 4,635,162614123,-;mdX: bitmap file is out of date, doing full recovery
| [ 1:04] 6,636,162618217,-;md: resync of RAID array mdX
| [ 1:04] 6,637,162716824,-;md: mdX: resync done.
| [ 1:04] 6,638,162948125,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 1:04] 6,639,162948130,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 1:04] 6,640,162948131,-;md/raid:mdX: device dm-11 operational as raid disk 2
| [ 1:04] 6,641,162949554,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:04] 3,642,162958043,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:04] 3,643,162959571,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:04] 6,644,163350682,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 1:04] 6,645,163350686,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 1:04] 6,646,163350687,-;md/raid:mdX: device dm-11 operational as raid disk 2
| [ 1:04] 6,647,163356887,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:04] 3,648,163369864,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:04] 3,649,163371423,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:04] 6,650,163402759,-;md/raid:mdX: device dm-14 operational as raid disk 0
| [ 1:04] 6,651,163402762,-;md/raid:mdX: device dm-16 operational as raid disk 1
| [ 1:04] 6,652,163402763,-;md/raid:mdX: device dm-18 operational as raid disk 2
| [ 1:04] 6,653,163403530,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:04] 3,654,163414047,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:04] 3,655,163415524,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:04] 4,656,163449919,-;device-mapper: thin: Data device (dm-19) discard unsupported: Disabling discard passdown.
| [ 1:04] 6,657,164677460,-;md/raid:mdX: device dm-14 operational as raid disk 0
| [ 1:04] 6,658,164677468,-;md/raid:mdX: device dm-16 operational as raid disk 1
| [ 1:04] 6,659,164677470,-;md/raid:mdX: device dm-18 operational as raid disk 2
| [ 1:04] 6,660,164678990,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:04] 3,661,164693946,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:04] 3,662,164697347,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:04] 4,663,165045128,-;device-mapper: cache: Origin device (dm-23) discard unsupported: Disabling discard passdown.
| [ 1:04] test_move (__main__.TestDbusService) ... ok
| [ 1:06] 6,664,166899412,-;dm-7: detected capacity change from 16384 to 8192
| [ 1:06] 6,665,167431749,-;dm-7: detected capacity change from 16384 to 8192
| [ 1:06] test_nesting (__main__.TestDbusService) ... ok
| [ 1:12] test_pv_allocation (__main__.TestDbusService) ... ok
| [ 1:13] test_pv_remove_add (__main__.TestDbusService) ... ok
| [ 1:13] test_pv_resize (__main__.TestDbusService) ... ok
| [ 1:14] test_pv_scan (__main__.TestDbusService) ... ok
| [ 1:15] test_pv_symlinks (__main__.TestDbusService) ... ok
| [ 1:16] test_pv_tags (__main__.TestDbusService) ... ok
| [ 1:17] test_refresh (__main__.TestDbusService) ... ok
| [ 1:17] test_snapshot_merge (__main__.TestDbusService) ... ok
| [ 1:19] 6,666,180287783,-;dm-9: detected capacity change from 32768 to 16384
| [ 1:19] test_snapshot_merge_thin (__main__.TestDbusService) ... ok
| [ 1:21] test_tag_names (__main__.TestDbusService) ... ok
| [ 1:30] test_tag_regression (__main__.TestDbusService) ... ok
| [ 1:31] test_vdo_pool_compression_deduplication (__main__.TestDbusService) ... skipped 'vdo not supported'
| [ 1:31] test_vdo_pool_convert (__main__.TestDbusService) ... skipped 'vdo not supported'
| [ 1:31] test_vdo_pool_create (__main__.TestDbusService) ... skipped 'vdo not supported'
| [ 1:31] test_version (__main__.TestDbusService) ... ok
| [ 1:32] test_vg_activate_deactivate (__main__.TestDbusService) ... ok
| [ 1:34] test_vg_allocation_policy_set (__main__.TestDbusService) ... ok
| [ 1:35] test_vg_change (__main__.TestDbusService) ... ok
| [ 1:36] test_vg_create (__main__.TestDbusService) ... ok
| [ 1:36] test_vg_delete (__main__.TestDbusService) ... ok
| [ 1:37] test_vg_extend (__main__.TestDbusService) ... ok
| [ 1:38] test_vg_max_lv (__main__.TestDbusService) ... ok
| [ 1:39] test_vg_max_pv (__main__.TestDbusService) ... ok
| [ 1:41] test_vg_reduce (__main__.TestDbusService) ... ok
| [ 1:42] test_vg_rename (__main__.TestDbusService) ... ok
| [ 1:44] test_vg_rename_with_thin_pool (__main__.TestDbusService) ... ok
| [ 1:52] 6,667,206192544,-;device-mapper: raid: Superblocks created for new raid set
| [ 1:52] 5,668,206209863,-;md/raid:mdX: not clean -- starting background reconstruction
| [ 1:52] 6,669,206209880,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 1:52] 6,670,206209882,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 1:52] 6,671,206209883,-;md/raid:mdX: device dm-11 operational as raid disk 2
| [ 1:52] 6,672,206210640,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:52] 3,673,206225940,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:52] 3,674,206227533,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:52] 4,675,206233852,-;mdX: bitmap file is out of date, doing full recovery
| [ 1:52] 6,676,206235905,-;md: resync of RAID array mdX
| [ 1:52] 6,677,206275429,-;md: mdX: resync done.
| [ 1:52] 6,678,206549845,-;device-mapper: raid: Superblocks created for new raid set
| [ 1:52] 5,679,206552173,-;md/raid:mdX: not clean -- starting background reconstruction
| [ 1:52] 6,680,206552194,-;md/raid:mdX: device dm-14 operational as raid disk 0
| [ 1:52] 6,681,206552197,-;md/raid:mdX: device dm-16 operational as raid disk 1
| [ 1:52] 6,682,206552198,-;md/raid:mdX: device dm-18 operational as raid disk 2
| [ 1:52] 6,683,206553315,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:52] 3,684,206565871,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:52] 3,685,206568166,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:52] 4,686,206576839,-;mdX: bitmap file is out of date, doing full recovery
| [ 1:52] 6,687,206581629,-;md: resync of RAID array mdX
| [ 1:52] 6,688,206692482,-;md: mdX: resync done.
| [ 1:52] 6,689,206930884,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 1:52] 6,690,206930888,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 1:52] 6,691,206930889,-;md/raid:mdX: device dm-11 operational as raid disk 2
| [ 1:52] 6,692,206932496,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:52] 3,693,206945905,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:52] 3,694,206947447,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:52] 6,695,207320811,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 1:52] 6,696,207320817,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 1:52] 6,697,207320819,-;md/raid:mdX: device dm-11 operational as raid disk 2
| [ 1:52] 6,698,207328911,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:52] 3,699,207341885,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:52] 3,700,207344140,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:52] 6,701,207391879,-;md/raid:mdX: device dm-14 operational as raid disk 0
| [ 1:52] 6,702,207391884,-;md/raid:mdX: device dm-16 operational as raid disk 1
| [ 1:52] 6,703,207391885,-;md/raid:mdX: device dm-18 operational as raid disk 2
| [ 1:52] 6,704,207398629,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:52] 3,705,207417963,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:52] 3,706,207419731,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:52] 4,707,207446253,-;device-mapper: thin: Data device (dm-19) discard unsupported: Disabling discard passdown.
| [ 1:52] 6,708,208152107,-;md/raid:mdX: device dm-7 operational as raid disk 0
| [ 1:52] 6,709,208152113,-;md/raid:mdX: device dm-9 operational as raid disk 1
| [ 1:52] 6,710,208152114,-;md/raid:mdX: device dm-11 operational as raid disk 2
| [ 1:52] 6,711,208157884,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:52] 3,712,208165958,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:52] 3,713,208169156,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:52] 6,714,208209902,-;md/raid:mdX: device dm-14 operational as raid disk 0
| [ 1:52] 6,715,208209905,-;md/raid:mdX: device dm-16 operational as raid disk 1
| [ 1:52] 6,716,208209906,-;md/raid:mdX: device dm-18 operational as raid disk 2
| [ 1:52] 6,717,208211581,-;md/raid:mdX: raid level 5 active with 3 out of 3 devices, algorithm 2
| [ 1:52] 3,718,208221886,-;device-mapper: raid: raid456 discard support disabled due to discard_zeroes_data uncertainty.
| [ 1:52] 3,719,208224243,-;device-mapper: raid: Set dm-raid.devices_handle_discard_safely=Y to override.
| [ 1:52] 4,720,208295602,-;device-mapper: thin: Data device (dm-19) discard unsupported: Disabling discard passdown.
| [ 1:52] test_vg_tags (__main__.TestDbusService) ... ok
| [ 1:53] test_vg_uuid_gen (__main__.TestDbusService) ... ok
| [ 1:53] test_writecache_lv (__main__.TestDbusService) ... ok
| [ 1:55]
| [ 1:55] ----------------------------------------------------------------------
| [ 1:55] Ran 67 tests in 113.353s
| [ 1:55]
| [ 1:55] OK (skipped=5)
| [ 1:55] ERROR: Failed to change execution mode to "lvm shell (non-fork)"
| [ 1:55] set +vx; STACKTRACE; set -vx
| [ 1:55] ##dbustest.sh:40+ set +vx
| [ 1:55] ## - /usr/share/lvm2-testsuite/api/dbustest.sh:40
| [ 1:55] ## 1 STACKTRACE() called from /usr/share/lvm2-testsuite/api/dbustest.sh:40
| [ 1:55] <======== Debug log debug.log_DEBUG_19542_15747 ========>
| [ 1:55] ## DEBUG0: 12:44:01.108436 none[19542] config/config.c:1501 log/debug_classes not found in config: defaulting to debug_classes = [ "memory", "devices", "io", "activation", "allocation", "metadata", "cache", "locking", "lvmpolld", "dbus" ]
| [ 1:55] ## DEBUG0: 12:44:01.108501 none[19542] commands/toolcontext.c:433 Setting log debug classes to 2031
| [ 1:55] ## DEBUG0: 12:44:01.108517 none[19542] config/config.c:1501 log/debug_file_fields not found in config: defaulting to debug_file_fields = [ "time", "command", "fileline", "message" ]
| [ 1:55] ## DEBUG0: 12:44:01.108528 none[19542] config/config.c:1501 log/debug_output_fields not found in config: defaulting to debug_output_fields = [ "time", "command", "fileline", "message" ]
| [ 1:55] ## DEBUG0: 12:44:01.108537 none[19542] config/config.c:1501 log/journal not found in config: defaulting to journal = [ ]
| [ 1:55] ## DEBUG0: 12:44:01.108542 none[19542] commands/toolcontext.c:359 log/journal contains a value which is not a string. Ignoring.
| [ 1:55] ## DEBUG0: 12:44:01.108549 none[19542] commands/toolcontext.c:445 Logging initialised at Wed Jun 14 12:44:01 2023
| [ 1:55] ## DEBUG0: 12:44:01.108573 none[19542] device_mapper/libdm-config.c:1085 config/checks not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.108583 none[19542] device_mapper/libdm-config.c:1085 config/abort_on_errors not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.108590 none[19542] device_mapper/libdm-config.c:1085 config/checks not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.108800 none[19542] device_mapper/libdm-config.c:1013 global/umask not found in config: defaulting to 63
| [ 1:55] ## DEBUG0: 12:44:01.108809 none[19542] commands/toolcontext.c:631 Set umask from 0022 to 0077
| [ 1:55] ## DEBUG0: 12:44:01.108818 none[19542] device_mapper/libdm-config.c:986 devices/external_device_info_source not found in config: defaulting to "none"
| [ 1:55] ## DEBUG0: 12:44:01.108824 none[19542] device_mapper/libdm-config.c:986 global/proc not found in config: defaulting to "/proc"
| [ 1:55] ## DEBUG0: 12:44:01.108895 none[19542] device_mapper/libdm-config.c:1085 global/activation not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.108906 none[19542] device_mapper/libdm-config.c:1085 activation/auto_set_activation_skip not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.108912 none[19542] device_mapper/libdm-config.c:986 activation/readahead not found in config: defaulting to "auto"
| [ 1:55] ## DEBUG0: 12:44:01.108919 none[19542] device_mapper/libdm-config.c:1085 activation/udev_rules not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.108925 none[19542] device_mapper/libdm-config.c:1085 activation/udev_sync not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.108931 none[19542] device_mapper/libdm-config.c:1085 devices/issue_discards not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.108938 none[19542] misc/lvm-globals.c:203 LVM activation checks enabled
| [ 1:55] ## DEBUG0: 12:44:01.108944 none[19542] device_mapper/libdm-config.c:1085 activation/use_linear_target not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.108950 none[19542] device_mapper/libdm-config.c:986 activation/missing_stripe_filler not found in config: defaulting to "error"
| [ 1:55] ## DEBUG0: 12:44:01.108957 none[19542] device_mapper/libdm-config.c:1085 global/metadata_read_only not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.108964 none[19542] device_mapper/libdm-config.c:1013 devices/pv_min_size not found in config: defaulting to 2048
| [ 1:55] ## DEBUG0: 12:44:01.108969 none[19542] device_mapper/libdm-config.c:1085 metadata/check_pv_device_sizes not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.108975 none[19542] device_mapper/libdm-config.c:1085 global/event_activation not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.108981 none[19542] device_mapper/libdm-config.c:986 global/units not found in config: defaulting to "r"
| [ 1:55] ## DEBUG0: 12:44:01.108989 none[19542] device_mapper/libdm-config.c:1085 report/binary_values_as_numeric not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.108994 none[19542] device_mapper/libdm-config.c:1085 report/mark_hidden_devices not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.109000 none[19542] device_mapper/libdm-config.c:1085 global/suffix not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.109006 none[19542] device_mapper/libdm-config.c:986 report/list_item_separator not found in config: defaulting to ","
| [ 1:55] ## DEBUG0: 12:44:01.109012 none[19542] device_mapper/libdm-config.c:986 report/time_format not found in config: defaulting to "%Y-%m-%d %T %z"
| [ 1:55] ## DEBUG0: 12:44:01.109025 none[19542] device_mapper/libdm-config.c:1085 report/two_word_unknown_device not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.109033 none[19542] device_mapper/libdm-config.c:986 global/system_id_source not found in config: defaulting to "none"
| [ 1:55] ## DEBUG0: 12:44:01.109040 none[19542] device_mapper/libdm-config.c:1013 global/io_memory_size not found in config: defaulting to 8192
| [ 1:55] ## DEBUG0: 12:44:01.109053 none[19542] device_mapper/libdm-config.c:986 config/profile_dir not found in config: defaulting to "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/profile"
| [ 1:55] ## DEBUG0: 12:44:01.109164 none[19542] device_mapper/libdm-config.c:1085 global/use_aio not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.109193 none[19542] device/dev-cache.c:1206 devices/preferred_names not found in config: using built-in preferences
| [ 1:55] ## DEBUG0: 12:44:01.109201 none[19542] device_mapper/libdm-config.c:1085 devices/obtain_device_list_from_udev not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.109210 none[19542] config/config.c:1504 Setting devices/scan to scan = [ "/dev" ]
| [ 1:55] ## DEBUG0: 12:44:01.109221 none[19542] device_mapper/libdm-config.c:1013 activation/reserved_stack not found in config: defaulting to 64
| [ 1:55] ## DEBUG0: 12:44:01.109233 none[19542] device_mapper/libdm-config.c:1013 activation/reserved_memory not found in config: defaulting to 8192
| [ 1:55] ## DEBUG0: 12:44:01.109240 none[19542] device_mapper/libdm-config.c:1013 activation/process_priority not found in config: defaulting to -18
| [ 1:55] ## DEBUG0: 12:44:01.109251 none[19542] metadata/vg.c:65 Allocated VG #orphans_lvm2 at 0x55f883ba96c0.
| [ 1:55] ## DEBUG0: 12:44:01.109264 none[19542] format_text/format-text.c:2645 Initialised format: lvm2
| [ 1:55] ## DEBUG0: 12:44:01.109279 none[19542] striped/striped.c:245 Initialised segtype: linear
| [ 1:55] ## DEBUG0: 12:44:01.109285 none[19542] striped/striped.c:245 Initialised segtype: striped
| [ 1:55] ## DEBUG0: 12:44:01.109290 none[19542] zero/zero.c:99 Initialised segtype: zero
| [ 1:55] ## DEBUG0: 12:44:01.109299 none[19542] error/errseg.c:105 Initialised segtype: error
| [ 1:55] ## DEBUG0: 12:44:01.109306 none[19542] device_mapper/libdm-config.c:986 dmeventd/snapshot_library not found in config: defaulting to "libdevmapper-event-lvm2snapshot.so"
| [ 1:55] ## DEBUG0: 12:44:01.109313 none[19542] snapshot/snapshot.c:274 Initialised segtype: snapshot
| [ 1:55] ## DEBUG0: 12:44:01.109319 none[19542] device_mapper/libdm-config.c:986 dmeventd/mirror_library not found in config: defaulting to "libdevmapper-event-lvm2mirror.so"
| [ 1:55] ## DEBUG0: 12:44:01.109326 none[19542] mirror/mirrored.c:539 Initialised segtype: mirror
| [ 1:55] ## DEBUG0: 12:44:01.109332 none[19542] device_mapper/libdm-config.c:986 dmeventd/raid_library not found in config: defaulting to "libdevmapper-event-lvm2raid.so"
| [ 1:55] ## DEBUG0: 12:44:01.109338 none[19542] raid/raid.c:694 Initialised segtype: raid0
| [ 1:55] ## DEBUG0: 12:44:01.109343 none[19542] raid/raid.c:694 Initialised segtype: raid0_meta
| [ 1:55] ## DEBUG0: 12:44:01.109349 none[19542] raid/raid.c:694 Initialised segtype: raid1
| [ 1:55] ## DEBUG0: 12:44:01.109354 none[19542] raid/raid.c:694 Initialised segtype: raid10
| [ 1:55] ## DEBUG0: 12:44:01.109359 none[19542] raid/raid.c:694 Initialised segtype: raid10_near
| [ 1:55] ## DEBUG0: 12:44:01.109364 none[19542] raid/raid.c:694 Initialised segtype: raid4
| [ 1:55] ## DEBUG0: 12:44:01.109370 none[19542] raid/raid.c:694 Initialised segtype: raid5
| [ 1:55] ## DEBUG0: 12:44:01.109375 none[19542] raid/raid.c:694 Initialised segtype: raid5_n
| [ 1:55] ## DEBUG0: 12:44:01.109380 none[19542] raid/raid.c:694 Initialised segtype: raid5_la
| [ 1:55] ## DEBUG0: 12:44:01.109385 none[19542] raid/raid.c:694 Initialised segtype: raid5_ls
| [ 1:55] ## DEBUG0: 12:44:01.109390 none[19542] raid/raid.c:694 Initialised segtype: raid5_ra
| [ 1:55] ## DEBUG0: 12:44:01.109395 none[19542] raid/raid.c:694 Initialised segtype: raid5_rs
| [ 1:55] ## DEBUG0: 12:44:01.109400 none[19542] raid/raid.c:694 Initialised segtype: raid6
| [ 1:55] ## DEBUG0: 12:44:01.109405 none[19542] raid/raid.c:694 Initialised segtype: raid6_n_6
| [ 1:55] ## DEBUG0: 12:44:01.109411 none[19542] raid/raid.c:694 Initialised segtype: raid6_nc
| [ 1:55] ## DEBUG0: 12:44:01.109416 none[19542] raid/raid.c:694 Initialised segtype: raid6_nr
| [ 1:55] ## DEBUG0: 12:44:01.109421 none[19542] raid/raid.c:694 Initialised segtype: raid6_zr
| [ 1:55] ## DEBUG0: 12:44:01.109426 none[19542] raid/raid.c:694 Initialised segtype: raid6_ls_6
| [ 1:55] ## DEBUG0: 12:44:01.109431 none[19542] raid/raid.c:694 Initialised segtype: raid6_rs_6
| [ 1:55] ## DEBUG0: 12:44:01.109436 none[19542] raid/raid.c:694 Initialised segtype: raid6_la_6
| [ 1:55] ## DEBUG0: 12:44:01.109442 none[19542] raid/raid.c:694 Initialised segtype: raid6_ra_6
| [ 1:55] ## DEBUG0: 12:44:01.109454 none[19542] device_mapper/libdm-config.c:986 dmeventd/thin_library not found in config: defaulting to "libdevmapper-event-lvm2thin.so"
| [ 1:55] ## DEBUG0: 12:44:01.109461 none[19542] thin/thin.c:825 Initialised segtype: thin-pool
| [ 1:55] ## DEBUG0: 12:44:01.109467 none[19542] device_mapper/libdm-config.c:986 dmeventd/thin_library not found in config: defaulting to "libdevmapper-event-lvm2thin.so"
| [ 1:55] ## DEBUG0: 12:44:01.109474 none[19542] thin/thin.c:825 Initialised segtype: thin
| [ 1:55] ## DEBUG0: 12:44:01.109483 none[19542] cache_segtype/cache.c:837 Initialised segtype: cache-pool
| [ 1:55] ## DEBUG0: 12:44:01.109492 none[19542] cache_segtype/cache.c:851 Initialised segtype: cache
| [ 1:55] ## DEBUG0: 12:44:01.109502 none[19542] device_mapper/libdm-config.c:986 dmeventd/vdo_library not found in config: defaulting to "libdevmapper-event-lvm2vdo.so"
| [ 1:55] ## DEBUG0: 12:44:01.109510 none[19542] vdo/vdo.c:606 Initialised segtypes: vdo, vdo-pool.
| [ 1:55] ## DEBUG0: 12:44:01.109516 none[19542] writecache/writecache.c:369 Initialised segtype: writecache
| [ 1:55] ## DEBUG0: 12:44:01.109521 none[19542] integrity/integrity.c:339 Initialised segtype: integrity
| [ 1:55] ## DEBUG0: 12:44:01.109528 none[19542] device_mapper/libdm-config.c:1013 backup/retain_days not found in config: defaulting to 30
| [ 1:55] ## DEBUG0: 12:44:01.109534 none[19542] device_mapper/libdm-config.c:1013 backup/retain_min not found in config: defaulting to 10
| [ 1:55] ## DEBUG0: 12:44:01.109544 none[19542] device_mapper/libdm-config.c:986 backup/archive_dir not found in config: defaulting to "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/archive"
| [ 1:55] ## DEBUG0: 12:44:01.109555 none[19542] device_mapper/libdm-config.c:986 backup/backup_dir not found in config: defaulting to "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/backup"
| [ 1:55] ## DEBUG0: 12:44:01.111919 none[19542] device_mapper/libdm-config.c:1085 log/command_names not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.111954 lvresize[19542] lvmcmdline.c:3140 Version: 2.03.16(2) (2022-05-18)
| [ 1:55] ## DEBUG0: 12:44:01.111961 lvresize[19542] lvmcmdline.c:3141 Parsing: lvresize --force -L+0B LVMTEST15146bqdwchjw_vg/iucncoip_lv --config global/notify_dbus=0
| [ 1:55] ## DEBUG0: 12:44:01.111978 lvresize[19542] lvmcmdline.c:2017 Recognised command lvresize_by_size (id 110 / enum 90).
| [ 1:55] ## DEBUG0: 12:44:01.111992 lvresize[19542] commands/toolcontext.c:1893 Reloading config files
| [ 1:55] ## DEBUG0: 12:44:01.112002 lvresize[19542] activate/fs.c:492 Syncing device names
| [ 1:55] ## DEBUG0: 12:44:01.112014 lvresize[19542] cache/lvmcache.c:2589 Destroy lvmcache content
| [ 1:55] ## DEBUG0: 12:44:01.112036 lvresize[19542] metadata/vg.c:80 Freeing VG #orphans_lvm2 at 0x55f883ba96c0.
| [ 1:55] ## DEBUG0: 12:44:01.112062 lvresize[19542] config/config.c:283 Loading config file: /tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/lvm.conf
| [ 1:55] ## DEBUG0: 12:44:01.112079 lvresize[19542] device/dev-io.c:425 Opened /tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/lvm.conf RO
| [ 1:55] ## DEBUG0: 12:44:01.112134 lvresize[19542] device/dev-io.c:466 Closed /tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/lvm.conf
| [ 1:55] ## DEBUG0: 12:44:01.112145 lvresize[19542] device_mapper/libdm-config.c:1085 log/silent not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.112154 lvresize[19542] device_mapper/libdm-config.c:986 log/prefix not found in config: defaulting to " "
| [ 1:55] ## DEBUG0: 12:44:01.112163 lvresize[19542] device_mapper/libdm-config.c:1085 global/test not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.112224 lvresize[19542] config/config.c:1501 log/debug_classes not found in config: defaulting to debug_classes = [ "memory", "devices", "io", "activation", "allocation", "metadata", "cache", "locking", "lvmpolld", "dbus" ]
| [ 1:55] ## DEBUG0: 12:44:01.112255 lvresize[19542] commands/toolcontext.c:433 Setting log debug classes to 2031
| [ 1:55] ## DEBUG0: 12:44:01.112266 lvresize[19542] config/config.c:1501 log/debug_file_fields not found in config: defaulting to debug_file_fields = [ "time", "command", "fileline", "message" ]
| [ 1:55] ## DEBUG0: 12:44:01.112277 lvresize[19542] config/config.c:1501 log/debug_output_fields not found in config: defaulting to debug_output_fields = [ "time", "command", "fileline", "message" ]
| [ 1:55] ## DEBUG0: 12:44:01.112286 lvresize[19542] config/config.c:1501 log/journal not found in config: defaulting to journal = [ ]
| [ 1:55] ## DEBUG0: 12:44:01.112291 lvresize[19542] commands/toolcontext.c:359 log/journal contains a value which is not a string. Ignoring.
| [ 1:55] ## DEBUG0: 12:44:01.112307 lvresize[19542] commands/toolcontext.c:445 Logging initialised at Wed Jun 14 12:44:01 2023
| [ 1:55] ## DEBUG0: 12:44:01.112328 lvresize[19542] device_mapper/libdm-config.c:1085 config/checks not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112335 lvresize[19542] device_mapper/libdm-config.c:1085 config/abort_on_errors not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.112342 lvresize[19542] device_mapper/libdm-config.c:1085 config/checks not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112351 lvresize[19542] device_mapper/libdm-config.c:1085 config/checks not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112384 lvresize[19542] device_mapper/libdm-config.c:1013 global/umask not found in config: defaulting to 63
| [ 1:55] ## DEBUG0: 12:44:01.112394 lvresize[19542] device_mapper/libdm-config.c:986 devices/external_device_info_source not found in config: defaulting to "none"
| [ 1:55] ## DEBUG0: 12:44:01.112401 lvresize[19542] device_mapper/libdm-config.c:986 global/proc not found in config: defaulting to "/proc"
| [ 1:55] ## DEBUG0: 12:44:01.112452 lvresize[19542] device_mapper/libdm-config.c:1085 global/activation not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112461 lvresize[19542] device_mapper/libdm-config.c:1085 activation/auto_set_activation_skip not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112467 lvresize[19542] device_mapper/libdm-config.c:986 activation/readahead not found in config: defaulting to "auto"
| [ 1:55] ## DEBUG0: 12:44:01.112474 lvresize[19542] device_mapper/libdm-config.c:1085 activation/udev_rules not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112480 lvresize[19542] device_mapper/libdm-config.c:1085 activation/udev_sync not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112486 lvresize[19542] device_mapper/libdm-config.c:1085 devices/issue_discards not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.112493 lvresize[19542] misc/lvm-globals.c:203 LVM activation checks enabled
| [ 1:55] ## DEBUG0: 12:44:01.112499 lvresize[19542] device_mapper/libdm-config.c:1085 activation/use_linear_target not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112505 lvresize[19542] device_mapper/libdm-config.c:986 activation/missing_stripe_filler not found in config: defaulting to "error"
| [ 1:55] ## DEBUG0: 12:44:01.112513 lvresize[19542] device_mapper/libdm-config.c:1085 global/metadata_read_only not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.112519 lvresize[19542] device_mapper/libdm-config.c:1013 devices/pv_min_size not found in config: defaulting to 2048
| [ 1:55] ## DEBUG0: 12:44:01.112525 lvresize[19542] device_mapper/libdm-config.c:1085 metadata/check_pv_device_sizes not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112531 lvresize[19542] device_mapper/libdm-config.c:1085 global/event_activation not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112537 lvresize[19542] device_mapper/libdm-config.c:986 global/units not found in config: defaulting to "r"
| [ 1:55] ## DEBUG0: 12:44:01.112545 lvresize[19542] device_mapper/libdm-config.c:1085 report/binary_values_as_numeric not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.112550 lvresize[19542] device_mapper/libdm-config.c:1085 report/mark_hidden_devices not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112556 lvresize[19542] device_mapper/libdm-config.c:1085 global/suffix not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.112562 lvresize[19542] device_mapper/libdm-config.c:986 report/list_item_separator not found in config: defaulting to ","
| [ 1:55] ## DEBUG0: 12:44:01.112568 lvresize[19542] device_mapper/libdm-config.c:986 report/time_format not found in config: defaulting to "%Y-%m-%d %T %z"
| [ 1:55] ## DEBUG0: 12:44:01.112574 lvresize[19542] device_mapper/libdm-config.c:1085 report/two_word_unknown_device not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.112582 lvresize[19542] device_mapper/libdm-config.c:986 global/system_id_source not found in config: defaulting to "none"
| [ 1:55] ## DEBUG0: 12:44:01.112588 lvresize[19542] device_mapper/libdm-config.c:1013 global/io_memory_size not found in config: defaulting to 8192
| [ 1:55] ## DEBUG0: 12:44:01.112599 lvresize[19542] device_mapper/libdm-config.c:986 config/profile_dir not found in config: defaulting to "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/profile"
| [ 1:55] ## DEBUG0: 12:44:01.112724 lvresize[19542] device/dev-cache.c:1206 devices/preferred_names not found in config: using built-in preferences
| [ 1:55] ## DEBUG0: 12:44:01.112734 lvresize[19542] device_mapper/libdm-config.c:1085 devices/obtain_device_list_from_udev not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.112743 lvresize[19542] config/config.c:1504 Setting devices/scan to scan = [ "/dev" ]
| [ 1:55] ## DEBUG0: 12:44:01.112758 lvresize[19542] metadata/vg.c:65 Allocated VG #orphans_lvm2 at 0x55f883bbb200.
| [ 1:55] ## DEBUG0: 12:44:01.112766 lvresize[19542] format_text/format-text.c:2645 Initialised format: lvm2
| [ 1:55] ## DEBUG0: 12:44:01.112774 lvresize[19542] striped/striped.c:245 Initialised segtype: linear
| [ 1:55] ## DEBUG0: 12:44:01.112780 lvresize[19542] striped/striped.c:245 Initialised segtype: striped
| [ 1:55] ## DEBUG0: 12:44:01.112785 lvresize[19542] zero/zero.c:99 Initialised segtype: zero
| [ 1:55] ## DEBUG0: 12:44:01.112790 lvresize[19542] error/errseg.c:105 Initialised segtype: error
| [ 1:55] ## DEBUG0: 12:44:01.112797 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/snapshot_library not found in config: defaulting to "libdevmapper-event-lvm2snapshot.so"
| [ 1:55] ## DEBUG0: 12:44:01.112804 lvresize[19542] snapshot/snapshot.c:274 Initialised segtype: snapshot
| [ 1:55] ## DEBUG0: 12:44:01.112810 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/mirror_library not found in config: defaulting to "libdevmapper-event-lvm2mirror.so"
| [ 1:55] ## DEBUG0: 12:44:01.112816 lvresize[19542] mirror/mirrored.c:539 Initialised segtype: mirror
| [ 1:55] ## DEBUG0: 12:44:01.112822 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/raid_library not found in config: defaulting to "libdevmapper-event-lvm2raid.so"
| [ 1:55] ## DEBUG0: 12:44:01.112829 lvresize[19542] raid/raid.c:694 Initialised segtype: raid0
| [ 1:55] ## DEBUG0: 12:44:01.112834 lvresize[19542] raid/raid.c:694 Initialised segtype: raid0_meta
| [ 1:55] ## DEBUG0: 12:44:01.112839 lvresize[19542] raid/raid.c:694 Initialised segtype: raid1
| [ 1:55] ## DEBUG0: 12:44:01.112845 lvresize[19542] raid/raid.c:694 Initialised segtype: raid10
| [ 1:55] ## DEBUG0: 12:44:01.112850 lvresize[19542] raid/raid.c:694 Initialised segtype: raid10_near
| [ 1:55] ## DEBUG0: 12:44:01.112855 lvresize[19542] raid/raid.c:694 Initialised segtype: raid4
| [ 1:55] ## DEBUG0: 12:44:01.112860 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5
| [ 1:55] ## DEBUG0: 12:44:01.112865 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5_n
| [ 1:55] ## DEBUG0: 12:44:01.112871 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5_la
| [ 1:55] ## DEBUG0: 12:44:01.112876 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5_ls
| [ 1:55] ## DEBUG0: 12:44:01.112881 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5_ra
| [ 1:55] ## DEBUG0: 12:44:01.112886 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5_rs
| [ 1:55] ## DEBUG0: 12:44:01.112891 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6
| [ 1:55] ## DEBUG0: 12:44:01.112897 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_n_6
| [ 1:55] ## DEBUG0: 12:44:01.112902 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_nc
| [ 1:55] ## DEBUG0: 12:44:01.112907 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_nr
| [ 1:55] ## DEBUG0: 12:44:01.112912 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_zr
| [ 1:55] ## DEBUG0: 12:44:01.112918 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_ls_6
| [ 1:55] ## DEBUG0: 12:44:01.112923 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_rs_6
| [ 1:55] ## DEBUG0: 12:44:01.112928 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_la_6
| [ 1:55] ## DEBUG0: 12:44:01.112934 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_ra_6
| [ 1:55] ## DEBUG0: 12:44:01.112940 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/thin_library not found in config: defaulting to "libdevmapper-event-lvm2thin.so"
| [ 1:55] ## DEBUG0: 12:44:01.112947 lvresize[19542] thin/thin.c:825 Initialised segtype: thin-pool
| [ 1:55] ## DEBUG0: 12:44:01.112953 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/thin_library not found in config: defaulting to "libdevmapper-event-lvm2thin.so"
| [ 1:55] ## DEBUG0: 12:44:01.112960 lvresize[19542] thin/thin.c:825 Initialised segtype: thin
| [ 1:55] ## DEBUG0: 12:44:01.112966 lvresize[19542] cache_segtype/cache.c:837 Initialised segtype: cache-pool
| [ 1:55] ## DEBUG0: 12:44:01.112971 lvresize[19542] cache_segtype/cache.c:851 Initialised segtype: cache
| [ 1:55] ## DEBUG0: 12:44:01.112978 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/vdo_library not found in config: defaulting to "libdevmapper-event-lvm2vdo.so"
| [ 1:55] ## DEBUG0: 12:44:01.112985 lvresize[19542] vdo/vdo.c:606 Initialised segtypes: vdo, vdo-pool.
| [ 1:55] ## DEBUG0: 12:44:01.112991 lvresize[19542] writecache/writecache.c:369 Initialised segtype: writecache
| [ 1:55] ## DEBUG0: 12:44:01.113002 lvresize[19542] integrity/integrity.c:339 Initialised segtype: integrity
| [ 1:55] ## DEBUG0: 12:44:01.113010 lvresize[19542] device_mapper/libdm-config.c:1013 backup/retain_days not found in config: defaulting to 30
| [ 1:55] ## DEBUG0: 12:44:01.113016 lvresize[19542] device_mapper/libdm-config.c:1013 backup/retain_min not found in config: defaulting to 10
| [ 1:55] ## DEBUG0: 12:44:01.113023 lvresize[19542] device_mapper/libdm-config.c:986 backup/archive_dir not found in config: defaulting to "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/archive"
| [ 1:55] ## DEBUG0: 12:44:01.113031 lvresize[19542] device_mapper/libdm-config.c:986 backup/backup_dir not found in config: defaulting to "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/backup"
| [ 1:55] ## DEBUG0: 12:44:01.113157 lvresize[19542] filters/filter-regex.c:245 Regex filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.113203 lvresize[19542] filters/filter-regex.c:245 Regex filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.113210 lvresize[19542] filters/filter-type.c:61 LVM type filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.113215 lvresize[19542] filters/filter-deviceid.c:66 deviceid filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.113230 lvresize[19542] filters/filter-sysfs.c:106 Sysfs filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.113238 lvresize[19542] filters/filter-usable.c:144 Usable device filter initialised (scan_lvs 1).
| [ 1:55] ## DEBUG0: 12:44:01.113244 lvresize[19542] device_mapper/libdm-config.c:1085 devices/multipath_component_detection not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113250 lvresize[19542] filters/filter-mpath.c:87 mpath filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.113254 lvresize[19542] filters/filter-partitioned.c:68 Partitioned filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.113259 lvresize[19542] filters/filter-signature.c:88 signature filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.113266 lvresize[19542] device_mapper/libdm-config.c:1085 devices/fw_raid_component_detection not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.113271 lvresize[19542] filters/filter-composite.c:98 Composite filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.113277 lvresize[19542] device_mapper/libdm-config.c:1085 devices/ignore_suspended_devices not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.113283 lvresize[19542] device_mapper/libdm-config.c:1085 devices/ignore_lvm_mirrors not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113293 lvresize[19542] filters/filter-persistent.c:187 Persistent filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.113301 lvresize[19542] device_mapper/libdm-config.c:1085 devices/allow_mixed_block_sizes not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.113307 lvresize[19542] device_mapper/libdm-config.c:986 devices/hints not found in config: defaulting to "all"
| [ 1:55] ## DEBUG0: 12:44:01.113314 lvresize[19542] device_mapper/libdm-config.c:986 activation/activation_mode not found in config: defaulting to "degraded"
| [ 1:55] ## DEBUG0: 12:44:01.113320 lvresize[19542] device_mapper/libdm-config.c:1085 metadata/record_lvs_history not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.113326 lvresize[19542] device_mapper/libdm-config.c:986 devices/search_for_devnames not found in config: defaulting to "auto"
| [ 1:55] ## DEBUG0: 12:44:01.113333 lvresize[19542] lvmcmdline.c:3212 DEGRADED MODE. Incomplete RAID LVs will be processed.
| [ 1:55] ## DEBUG0: 12:44:01.113345 lvresize[19542] lvmcmdline.c:3218 Processing command: lvresize --force -L+0B LVMTEST15146bqdwchjw_vg/iucncoip_lv --config global/notify_dbus=0
| [ 1:55] ## DEBUG0: 12:44:01.113352 lvresize[19542] lvmcmdline.c:3219 Command pid: 19542
| [ 1:55] ## DEBUG0: 12:44:01.113356 lvresize[19542] lvmcmdline.c:3220 System ID:
| [ 1:55] ## DEBUG0: 12:44:01.113361 lvresize[19542] lvmcmdline.c:3223 O_DIRECT will be used
| [ 1:55] ## DEBUG0: 12:44:01.113370 lvresize[19542] device_mapper/libdm-config.c:1085 global/wait_for_locks not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113375 lvresize[19542] locking/locking.c:141 File locking settings: readonly:0 sysinit:0 ignorelockingfailure:0 global/metadata_read_only:0 global/wait_for_locks:1.
| [ 1:55] ## DEBUG0: 12:44:01.113381 lvresize[19542] device_mapper/libdm-config.c:1085 global/prioritise_write_locks not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113388 lvresize[19542] device_mapper/libdm-config.c:986 global/locking_dir not found in config: defaulting to "/run/lock/lvm"
| [ 1:55] ## DEBUG0: 12:44:01.113405 lvresize[19542] device_mapper/libdm-config.c:986 devices/md_component_checks not found in config: defaulting to "auto"
| [ 1:55] ## DEBUG0: 12:44:01.113417 lvresize[19542] lvmcmdline.c:3042 Using md_component_checks auto use_full_md_check 0
| [ 1:55] ## DEBUG0: 12:44:01.113424 lvresize[19542] device_mapper/libdm-config.c:986 devices/multipath_wwids_file not found in config: defaulting to "/etc/multipath/wwids"
| [ 1:55] ## DEBUG0: 12:44:01.113437 lvresize[19542] device/dev-mpath.c:215 multipath wwids file not found
| [ 1:55] ## DEBUG0: 12:44:01.113493 lvresize[19542] lvmcmdline.c:273 --size may not be zero.
| [ 1:55] ## DEBUG0: 12:44:01.113502 lvresize[19542] lvresize.c:75 <backtrace>
| [ 1:55] ## DEBUG0: 12:44:01.113508 lvresize[19542] lvresize.c:206 <backtrace>
| [ 1:55] ## DEBUG0: 12:44:01.113515 lvresize[19542] cache/lvmcache.c:2589 Destroy lvmcache content
| [ 1:55] ## DEBUG0: 12:44:01.113527 lvresize[19542] commands/toolcontext.c:1893 Reloading config files
| [ 1:55] ## DEBUG0: 12:44:01.113533 lvresize[19542] activate/fs.c:492 Syncing device names
| [ 1:55] ## DEBUG0: 12:44:01.113538 lvresize[19542] cache/lvmcache.c:2589 Destroy lvmcache content
| [ 1:55] ## DEBUG0: 12:44:01.113548 lvresize[19542] metadata/vg.c:80 Freeing VG #orphans_lvm2 at 0x55f883bbb200.
| [ 1:55] ## DEBUG0: 12:44:01.113571 lvresize[19542] config/config.c:283 Loading config file: /tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/lvm.conf
| [ 1:55] ## DEBUG0: 12:44:01.113586 lvresize[19542] device/dev-io.c:425 Opened /tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/lvm.conf RO
| [ 1:55] ## DEBUG0: 12:44:01.113632 lvresize[19542] device/dev-io.c:466 Closed /tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/lvm.conf
| [ 1:55] ## DEBUG0: 12:44:01.113642 lvresize[19542] device_mapper/libdm-config.c:1085 log/silent not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.113651 lvresize[19542] device_mapper/libdm-config.c:986 log/prefix not found in config: defaulting to " "
| [ 1:55] ## DEBUG0: 12:44:01.113659 lvresize[19542] device_mapper/libdm-config.c:1085 global/test not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.113716 lvresize[19542] config/config.c:1501 log/debug_classes not found in config: defaulting to debug_classes = [ "memory", "devices", "io", "activation", "allocation", "metadata", "cache", "locking", "lvmpolld", "dbus" ]
| [ 1:55] ## DEBUG0: 12:44:01.113730 lvresize[19542] commands/toolcontext.c:433 Setting log debug classes to 2031
| [ 1:55] ## DEBUG0: 12:44:01.113741 lvresize[19542] config/config.c:1501 log/debug_file_fields not found in config: defaulting to debug_file_fields = [ "time", "command", "fileline", "message" ]
| [ 1:55] ## DEBUG0: 12:44:01.113752 lvresize[19542] config/config.c:1501 log/debug_output_fields not found in config: defaulting to debug_output_fields = [ "time", "command", "fileline", "message" ]
| [ 1:55] ## DEBUG0: 12:44:01.113761 lvresize[19542] config/config.c:1501 log/journal not found in config: defaulting to journal = [ ]
| [ 1:55] ## DEBUG0: 12:44:01.113766 lvresize[19542] commands/toolcontext.c:359 log/journal contains a value which is not a string. Ignoring.
| [ 1:55] ## DEBUG0: 12:44:01.113773 lvresize[19542] commands/toolcontext.c:445 Logging initialised at Wed Jun 14 12:44:01 2023
| [ 1:55] ## DEBUG0: 12:44:01.113788 lvresize[19542] device_mapper/libdm-config.c:1085 config/checks not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113795 lvresize[19542] device_mapper/libdm-config.c:1085 config/abort_on_errors not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.113801 lvresize[19542] device_mapper/libdm-config.c:1085 config/checks not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113834 lvresize[19542] device_mapper/libdm-config.c:1013 global/umask not found in config: defaulting to 63
| [ 1:55] ## DEBUG0: 12:44:01.113844 lvresize[19542] device_mapper/libdm-config.c:986 devices/external_device_info_source not found in config: defaulting to "none"
| [ 1:55] ## DEBUG0: 12:44:01.113850 lvresize[19542] device_mapper/libdm-config.c:986 global/proc not found in config: defaulting to "/proc"
| [ 1:55] ## DEBUG0: 12:44:01.113898 lvresize[19542] device_mapper/libdm-config.c:1085 global/activation not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113907 lvresize[19542] device_mapper/libdm-config.c:1085 activation/auto_set_activation_skip not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113914 lvresize[19542] device_mapper/libdm-config.c:986 activation/readahead not found in config: defaulting to "auto"
| [ 1:55] ## DEBUG0: 12:44:01.113921 lvresize[19542] device_mapper/libdm-config.c:1085 activation/udev_rules not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113934 lvresize[19542] device_mapper/libdm-config.c:1085 activation/udev_sync not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113940 lvresize[19542] device_mapper/libdm-config.c:1085 devices/issue_discards not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.113947 lvresize[19542] misc/lvm-globals.c:203 LVM activation checks enabled
| [ 1:55] ## DEBUG0: 12:44:01.113953 lvresize[19542] device_mapper/libdm-config.c:1085 activation/use_linear_target not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113959 lvresize[19542] device_mapper/libdm-config.c:986 activation/missing_stripe_filler not found in config: defaulting to "error"
| [ 1:55] ## DEBUG0: 12:44:01.113967 lvresize[19542] device_mapper/libdm-config.c:1085 global/metadata_read_only not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.113972 lvresize[19542] device_mapper/libdm-config.c:1013 devices/pv_min_size not found in config: defaulting to 2048
| [ 1:55] ## DEBUG0: 12:44:01.113978 lvresize[19542] device_mapper/libdm-config.c:1085 metadata/check_pv_device_sizes not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113984 lvresize[19542] device_mapper/libdm-config.c:1085 global/event_activation not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.113990 lvresize[19542] device_mapper/libdm-config.c:986 global/units not found in config: defaulting to "r"
| [ 1:55] ## DEBUG0: 12:44:01.113997 lvresize[19542] device_mapper/libdm-config.c:1085 report/binary_values_as_numeric not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.114003 lvresize[19542] device_mapper/libdm-config.c:1085 report/mark_hidden_devices not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.114008 lvresize[19542] device_mapper/libdm-config.c:1085 global/suffix not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.114014 lvresize[19542] device_mapper/libdm-config.c:986 report/list_item_separator not found in config: defaulting to ","
| [ 1:55] ## DEBUG0: 12:44:01.114020 lvresize[19542] device_mapper/libdm-config.c:986 report/time_format not found in config: defaulting to "%Y-%m-%d %T %z"
| [ 1:55] ## DEBUG0: 12:44:01.114027 lvresize[19542] device_mapper/libdm-config.c:1085 report/two_word_unknown_device not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.114034 lvresize[19542] device_mapper/libdm-config.c:986 global/system_id_source not found in config: defaulting to "none"
| [ 1:55] ## DEBUG0: 12:44:01.114040 lvresize[19542] device_mapper/libdm-config.c:1013 global/io_memory_size not found in config: defaulting to 8192
| [ 1:55] ## DEBUG0: 12:44:01.114047 lvresize[19542] device_mapper/libdm-config.c:986 config/profile_dir not found in config: defaulting to "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/profile"
| [ 1:55] ## DEBUG0: 12:44:01.114168 lvresize[19542] device/dev-cache.c:1206 devices/preferred_names not found in config: using built-in preferences
| [ 1:55] ## DEBUG0: 12:44:01.114178 lvresize[19542] device_mapper/libdm-config.c:1085 devices/obtain_device_list_from_udev not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.114187 lvresize[19542] config/config.c:1504 Setting devices/scan to scan = [ "/dev" ]
| [ 1:55] ## DEBUG0: 12:44:01.114198 lvresize[19542] metadata/vg.c:65 Allocated VG #orphans_lvm2 at 0x55f883b9f1e0.
| [ 1:55] ## DEBUG0: 12:44:01.114205 lvresize[19542] format_text/format-text.c:2645 Initialised format: lvm2
| [ 1:55] ## DEBUG0: 12:44:01.114213 lvresize[19542] striped/striped.c:245 Initialised segtype: linear
| [ 1:55] ## DEBUG0: 12:44:01.114219 lvresize[19542] striped/striped.c:245 Initialised segtype: striped
| [ 1:55] ## DEBUG0: 12:44:01.114224 lvresize[19542] zero/zero.c:99 Initialised segtype: zero
| [ 1:55] ## DEBUG0: 12:44:01.114229 lvresize[19542] error/errseg.c:105 Initialised segtype: error
| [ 1:55] ## DEBUG0: 12:44:01.114236 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/snapshot_library not found in config: defaulting to "libdevmapper-event-lvm2snapshot.so"
| [ 1:55] ## DEBUG0: 12:44:01.114243 lvresize[19542] snapshot/snapshot.c:274 Initialised segtype: snapshot
| [ 1:55] ## DEBUG0: 12:44:01.114249 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/mirror_library not found in config: defaulting to "libdevmapper-event-lvm2mirror.so"
| [ 1:55] ## DEBUG0: 12:44:01.114255 lvresize[19542] mirror/mirrored.c:539 Initialised segtype: mirror
| [ 1:55] ## DEBUG0: 12:44:01.114261 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/raid_library not found in config: defaulting to "libdevmapper-event-lvm2raid.so"
| [ 1:55] ## DEBUG0: 12:44:01.114267 lvresize[19542] raid/raid.c:694 Initialised segtype: raid0
| [ 1:55] ## DEBUG0: 12:44:01.114278 lvresize[19542] raid/raid.c:694 Initialised segtype: raid0_meta
| [ 1:55] ## DEBUG0: 12:44:01.114284 lvresize[19542] raid/raid.c:694 Initialised segtype: raid1
| [ 1:55] ## DEBUG0: 12:44:01.114289 lvresize[19542] raid/raid.c:694 Initialised segtype: raid10
| [ 1:55] ## DEBUG0: 12:44:01.114295 lvresize[19542] raid/raid.c:694 Initialised segtype: raid10_near
| [ 1:55] ## DEBUG0: 12:44:01.114300 lvresize[19542] raid/raid.c:694 Initialised segtype: raid4
| [ 1:55] ## DEBUG0: 12:44:01.114305 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5
| [ 1:55] ## DEBUG0: 12:44:01.114310 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5_n
| [ 1:55] ## DEBUG0: 12:44:01.114315 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5_la
| [ 1:55] ## DEBUG0: 12:44:01.114320 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5_ls
| [ 1:55] ## DEBUG0: 12:44:01.114325 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5_ra
| [ 1:55] ## DEBUG0: 12:44:01.114331 lvresize[19542] raid/raid.c:694 Initialised segtype: raid5_rs
| [ 1:55] ## DEBUG0: 12:44:01.114336 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6
| [ 1:55] ## DEBUG0: 12:44:01.114341 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_n_6
| [ 1:55] ## DEBUG0: 12:44:01.114346 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_nc
| [ 1:55] ## DEBUG0: 12:44:01.114351 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_nr
| [ 1:55] ## DEBUG0: 12:44:01.114357 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_zr
| [ 1:55] ## DEBUG0: 12:44:01.114362 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_ls_6
| [ 1:55] ## DEBUG0: 12:44:01.114367 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_rs_6
| [ 1:55] ## DEBUG0: 12:44:01.114372 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_la_6
| [ 1:55] ## DEBUG0: 12:44:01.114377 lvresize[19542] raid/raid.c:694 Initialised segtype: raid6_ra_6
| [ 1:55] ## DEBUG0: 12:44:01.114384 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/thin_library not found in config: defaulting to "libdevmapper-event-lvm2thin.so"
| [ 1:55] ## DEBUG0: 12:44:01.114391 lvresize[19542] thin/thin.c:825 Initialised segtype: thin-pool
| [ 1:55] ## DEBUG0: 12:44:01.114397 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/thin_library not found in config: defaulting to "libdevmapper-event-lvm2thin.so"
| [ 1:55] ## DEBUG0: 12:44:01.114403 lvresize[19542] thin/thin.c:825 Initialised segtype: thin
| [ 1:55] ## DEBUG0: 12:44:01.114409 lvresize[19542] cache_segtype/cache.c:837 Initialised segtype: cache-pool
| [ 1:55] ## DEBUG0: 12:44:01.114415 lvresize[19542] cache_segtype/cache.c:851 Initialised segtype: cache
| [ 1:55] ## DEBUG0: 12:44:01.114421 lvresize[19542] device_mapper/libdm-config.c:986 dmeventd/vdo_library not found in config: defaulting to "libdevmapper-event-lvm2vdo.so"
| [ 1:55] ## DEBUG0: 12:44:01.114428 lvresize[19542] vdo/vdo.c:606 Initialised segtypes: vdo, vdo-pool.
| [ 1:55] ## DEBUG0: 12:44:01.114435 lvresize[19542] writecache/writecache.c:369 Initialised segtype: writecache
| [ 1:55] ## DEBUG0: 12:44:01.114440 lvresize[19542] integrity/integrity.c:339 Initialised segtype: integrity
| [ 1:55] ## DEBUG0: 12:44:01.114447 lvresize[19542] device_mapper/libdm-config.c:1013 backup/retain_days not found in config: defaulting to 30
| [ 1:55] ## DEBUG0: 12:44:01.114453 lvresize[19542] device_mapper/libdm-config.c:1013 backup/retain_min not found in config: defaulting to 10
| [ 1:55] ## DEBUG0: 12:44:01.114460 lvresize[19542] device_mapper/libdm-config.c:986 backup/archive_dir not found in config: defaulting to "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/archive"
| [ 1:55] ## DEBUG0: 12:44:01.114467 lvresize[19542] device_mapper/libdm-config.c:986 backup/backup_dir not found in config: defaulting to "/tmp/autopkgtest.z4wIRN/autopkgtest_tmp/LVMTEST15146.OT9VKHMd7u/etc/backup"
| [ 1:55] ## DEBUG0: 12:44:01.114570 lvresize[19542] filters/filter-regex.c:245 Regex filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.114609 lvresize[19542] filters/filter-regex.c:245 Regex filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.114616 lvresize[19542] filters/filter-type.c:61 LVM type filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.114621 lvresize[19542] filters/filter-deviceid.c:66 deviceid filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.114632 lvresize[19542] filters/filter-sysfs.c:106 Sysfs filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.114640 lvresize[19542] filters/filter-usable.c:144 Usable device filter initialised (scan_lvs 1).
| [ 1:55] ## DEBUG0: 12:44:01.114646 lvresize[19542] device_mapper/libdm-config.c:1085 devices/multipath_component_detection not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.114651 lvresize[19542] filters/filter-mpath.c:87 mpath filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.114656 lvresize[19542] filters/filter-partitioned.c:68 Partitioned filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.114666 lvresize[19542] filters/filter-signature.c:88 signature filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.114673 lvresize[19542] device_mapper/libdm-config.c:1085 devices/fw_raid_component_detection not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.114678 lvresize[19542] filters/filter-composite.c:98 Composite filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.114684 lvresize[19542] device_mapper/libdm-config.c:1085 devices/ignore_suspended_devices not found in config: defaulting to 0
| [ 1:55] ## DEBUG0: 12:44:01.114690 lvresize[19542] device_mapper/libdm-config.c:1085 devices/ignore_lvm_mirrors not found in config: defaulting to 1
| [ 1:55] ## DEBUG0: 12:44:01.114696 lvresize[19542] filters/filter-persistent.c:187 Persistent filter initialised.
| [ 1:55] ## DEBUG0: 12:44:01.114716 lvresize[19542] lvmcmdline.c:2027 Run `lvresize --help' for more information.
| [ 1:55] ## DEBUG0: 12:44:01.114722 lvresize[19542] lvmcmdline.c:3328 Completed: lvresize --force -L+0B LVMTEST15146bqdwchjw_vg/iucncoip_lv --config global/notify_dbus=0
| [ 1:55] ## DEBUG0: 12:44:01.114882 lvresize[19542] cache/lvmcache.c:2589 Destroy lvmcache content
| [ 1:55] ## DEBUG0: 12:44:01.114898 lvresize[19542] metadata/vg.c:80 Freeing VG #orphans_lvm2 at 0x55f883b9f1e0.
| [ 1:55] ## DEBUG0: 12:44:01.114943 lvresize[19542] activate/fs.c:492 Syncing device names
| [ 1:55] <======== Debug log debug.log_LVMDBUSD_out ========>
| [ 1:55] ## LVMDBUSD: 15323:15323 - We have VDO support
| [ 1:55] ## LVMDBUSD: 15323:15323 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15323 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - Service ready! total time= 0.1147, lvm time= 0.1008 count= 3
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._use_lvm_shell at 0x7fefac126ef0> with args (dbus.Boolean(False),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._use_lvm_shell at 0x7fefac126ef0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = (1)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')}}, '/com/redhat/lvmdbus1/Pv/1': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')}}, '/com/redhat/lvmdbus1/Pv/2': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')}}, '/com/redhat/lvmdbus1/Pv/3': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')}}, '/com/redhat/lvmdbus1/Pv/4': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')}}, '/com/redhat/lvmdbus1/Pv/5': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')}}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('com.redhat.lvmdbus1.Manager')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Version': dbus.String('1.1.0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/0, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._create_vg at 0x7fefac126b00> with args (dbus.String('LVMTEST15146ndegvcgc_vg'), dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/1'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/2'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/3'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/4'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/5')], signature=dbus.Signature('o')), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - ExternalEvent vgcreate
| [ 1:55] ## LVMDBUSD: 15323:15323 - ExternalEvent received, disabling udev monitoring
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Vg/0, {'com.redhat.lvmdbus1.Vg': {'Name': 'LVMTEST15146ndegvcgc_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array([], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(519168), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(1), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(0), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9594), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40240152576), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('uA7hna-PA8o-2r1u-yLfK-esuB-gBrk-ft74Fg')}, 'com.redhat.lvmdbus1.VgVdo': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._create_vg at 0x7fefac126b00>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/0 at 0x7fefabfd45e0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/0 at 0x7fefabfd45e0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/0, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._external_event at 0x7fefac127010> with args (dbus.String('vgcreate'),) (callback = None)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Processing _external_event= vgcreate
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._external_event at 0x7fefac127010>
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/0 at 0x7fefabfd45e0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/0 at 0x7fefabfd45e0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/0 at 0x7fefabfd45e0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/0, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146ndegvcgc_vg'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146ndegvcgc_vg, result = /com/redhat/lvmdbus1/Vg/0
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = (/com/redhat/lvmdbus1/Vg/0)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/0 at 0x7fefabf985e0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/0 at 0x7fefabf985e0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/0 at 0x7fefabf985e0>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Name': 'LVMTEST15146ndegvcgc_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array([], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(519168), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(1), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(0), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9594), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40240152576), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('uA7hna-PA8o-2r1u-yLfK-esuB-gBrk-ft74Fg')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/0 at 0x7fefabf985e0>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/1, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._lv_create_linear at 0x7fefac09b1c0> with args ('uA7hna-PA8o-2r1u-yLfK-esuB-gBrk-ft74Fg', 'LVMTEST15146ndegvcgc_vg', dbus.String('pvhhgqyh_lv'), dbus.UInt64(8388608), dbus.Boolean(False), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '1597')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/Lv/0', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(2), 'UsedBytes': dbus.UInt64(8388608), 'FreeBytes': dbus.UInt64(6698303488)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/0, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/0'], signature=dbus.Signature('o')), 'Seqno': dbus.UInt64(2), 'LvCount': dbus.UInt64(1), 'FreeCount': dbus.UInt64(9592), 'FreeBytes': dbus.UInt64(40231763968)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/0, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146ndegvcgc_vg/pvhhgqyh_lv'), 'Name': dbus.String('pvhhgqyh_lv'), 'Uuid': dbus.String('m4g4wH-fLuR-DZfs-vlS6-S3JA-0v9Q-TEWrhJ')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._lv_create_linear at 0x7fefac09b1c0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/1 at 0x7fefabf9bf10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/1 at 0x7fefabf9bf10>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/1, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/1 at 0x7fefabf9bf10>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/1 at 0x7fefabf9bf10>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/1 at 0x7fefabf9bf10>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/0')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/1, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/0 at 0x7fefabf9b310>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/0 at 0x7fefabf9b310>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/0 at 0x7fefabf9b310>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/0 at 0x7fefabf9b310>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146ndegvcgc_vg/pvhhgqyh_lv'), 'Name': dbus.String('pvhhgqyh_lv'), 'Uuid': dbus.String('m4g4wH-fLuR-DZfs-vlS6-S3JA-0v9Q-TEWrhJ')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146ndegvcgc_vg/pvhhgqyh_lv'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146ndegvcgc_vg/pvhhgqyh_lv, result = /com/redhat/lvmdbus1/Lv/0
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = (/com/redhat/lvmdbus1/Lv/0)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/2, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._lv_create_linear at 0x7fefac09b1c0> with args ('uA7hna-PA8o-2r1u-yLfK-esuB-gBrk-ft74Fg', 'LVMTEST15146ndegvcgc_vg', dbus.String('owqepwtz_lv'), dbus.UInt64(8388608), dbus.Boolean(False), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '1595')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/Lv/1', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/Lv/0', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(4), 'MdaFreeBytes': dbus.UInt64(518656), 'UsedBytes': dbus.UInt64(16777216), 'FreeBytes': dbus.UInt64(6689914880)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/0, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/0', '/com/redhat/lvmdbus1/Lv/1'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(518656), 'Seqno': dbus.UInt64(3), 'LvCount': dbus.UInt64(2), 'FreeCount': dbus.UInt64(9590), 'FreeBytes': dbus.UInt64(40223375360)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/1, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146ndegvcgc_vg/owqepwtz_lv'), 'Name': dbus.String('owqepwtz_lv'), 'Uuid': dbus.String('38J2oG-ppCO-hATc-Pm9B-wEsc-0e4y-zlTD0K')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._lv_create_linear at 0x7fefac09b1c0>
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/2 at 0x7fefabf98a60>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/2 at 0x7fefabf98a60>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/2, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/2 at 0x7fefabf98a60>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/2 at 0x7fefabf98a60>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/1')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/2 at 0x7fefabf98a60>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/1')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/2, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/1 at 0x7fefabf98af0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/1 at 0x7fefabf98af0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/1 at 0x7fefabf98af0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/1 at 0x7fefabf98af0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146ndegvcgc_vg/owqepwtz_lv'), 'Name': dbus.String('owqepwtz_lv'), 'Uuid': dbus.String('38J2oG-ppCO-hATc-Pm9B-wEsc-0e4y-zlTD0K')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146ndegvcgc_vg/owqepwtz_lv'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146ndegvcgc_vg/owqepwtz_lv, result = /com/redhat/lvmdbus1/Lv/1
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = (/com/redhat/lvmdbus1/Lv/1)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/3, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._create_pool at 0x7fefac09b640> with args ('uA7hna-PA8o-2r1u-yLfK-esuB-gBrk-ft74Fg', 'LVMTEST15146ndegvcgc_vg', dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/0'), dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/1'), dbus.Dictionary({}, signature=dbus.Signature('sv')), <function vg_create_cache_pool at 0x7fefac04f1c0>) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/0, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/1, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '1593')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/0', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/1', [('4', '5', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/2', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(6), 'MdaFreeBytes': dbus.UInt64(518144), 'UsedBytes': dbus.UInt64(25165824), 'FreeBytes': dbus.UInt64(6681526272)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/0, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/CachePool/0', '/com/redhat/lvmdbus1/HiddenLv/2', '/com/redhat/lvmdbus1/HiddenLv/0', '/com/redhat/lvmdbus1/HiddenLv/1'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(518144), 'Seqno': dbus.UInt64(5), 'LvCount': dbus.UInt64(1), 'FreeCount': dbus.UInt64(9588), 'FreeBytes': dbus.UInt64(40214986752)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/0, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[owqepwtz_lv_cdata]'), 'Uuid': dbus.String('38J2oG-ppCO-hATc-Pm9B-wEsc-0e4y-zlTD0K')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/2, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[owqepwtz_lv_cmeta]'), 'Uuid': dbus.String('m4g4wH-fLuR-DZfs-vlS6-S3JA-0v9Q-TEWrhJ')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/1, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('QdQGbV-0LOt-lMAF-agxX-VQ36-shDO-gp882z')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/CachePool/0, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/2'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/0')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146ndegvcgc_vg/owqepwtz_lv'), 'Name': dbus.String('owqepwtz_lv'), 'Uuid': dbus.String('cyI2wL-ZD9H-8KSe-csbt-60x3-0jeK-DHuxXx')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/0'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/2')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._create_pool at 0x7fefac09b640>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/3 at 0x7fefabf9afb0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/3 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/3, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/3 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/3 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/CachePool/0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/3 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/CachePool/0')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/3, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/0 at 0x7fefabf9b9a0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/0 at 0x7fefabf9b9a0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/0 at 0x7fefabf9b9a0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/0 at 0x7fefabf9b9a0>, dbus.String('com.redhat.lvmdbus1.CachePool')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/0'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/2')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/0 at 0x7fefabf9b9a0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/2'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/0')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146ndegvcgc_vg/owqepwtz_lv'), 'Name': dbus.String('owqepwtz_lv'), 'Uuid': dbus.String('cyI2wL-ZD9H-8KSe-csbt-60x3-0jeK-DHuxXx')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/4, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._lv_create_linear at 0x7fefac09b1c0> with args ('uA7hna-PA8o-2r1u-yLfK-esuB-gBrk-ft74Fg', 'LVMTEST15146ndegvcgc_vg', dbus.String('vqodrqws_lv'), dbus.UInt64(33554432), dbus.Boolean(False), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '8'), ('14', '1585')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/0', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/1', [('4', '5', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/2', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/Lv/2', [('6', '13', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(14), 'UsedBytes': dbus.UInt64(58720256), 'FreeBytes': dbus.UInt64(6647971840)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/0, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/CachePool/0', '/com/redhat/lvmdbus1/Lv/2', '/com/redhat/lvmdbus1/HiddenLv/2', '/com/redhat/lvmdbus1/HiddenLv/0', '/com/redhat/lvmdbus1/HiddenLv/1'], signature=dbus.Signature('o')), 'Seqno': dbus.UInt64(6), 'LvCount': dbus.UInt64(2), 'FreeCount': dbus.UInt64(9580), 'FreeBytes': dbus.UInt64(40181432320)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/2, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146ndegvcgc_vg/vqodrqws_lv'), 'Name': dbus.String('vqodrqws_lv'), 'Uuid': dbus.String('yhVEGv-yGk3-Og4f-cbKh-LhWu-6ZWk-E8BV8N')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._lv_create_linear at 0x7fefac09b1c0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/4 at 0x7fefabf9bc10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/4 at 0x7fefabf9bc10>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/4, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/4 at 0x7fefabf9bc10>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/4 at 0x7fefabf9bc10>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/2')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/4 at 0x7fefabf9bc10>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/2')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/4, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/2 at 0x7fefabf9ad40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/2 at 0x7fefabf9ad40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/2 at 0x7fefabf9ad40>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/2 at 0x7fefabf9ad40>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146ndegvcgc_vg/vqodrqws_lv'), 'Name': dbus.String('vqodrqws_lv'), 'Uuid': dbus.String('yhVEGv-yGk3-Og4f-cbKh-LhWu-6ZWk-E8BV8N')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146ndegvcgc_vg/vqodrqws_lv'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146ndegvcgc_vg/vqodrqws_lv, result = /com/redhat/lvmdbus1/Lv/2
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = (/com/redhat/lvmdbus1/Lv/2)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/5, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function LvCachePool._cache_lv at 0x7fefac0b3d00> with args (dbus.String('cyI2wL-ZD9H-8KSe-csbt-60x3-0jeK-DHuxXx'), 'LVMTEST15146ndegvcgc_vg/owqepwtz_lv', dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/2'), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/CachePool/0, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachePool'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/2, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/0', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/3', [('6', '13', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/1', [('4', '5', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/2', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/0, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/3', '/com/redhat/lvmdbus1/HiddenLv/4', '/com/redhat/lvmdbus1/HiddenLv/2', '/com/redhat/lvmdbus1/HiddenLv/0', '/com/redhat/lvmdbus1/HiddenLv/1', '/com/redhat/lvmdbus1/HiddenLv/3'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(517632), 'Seqno': dbus.UInt64(7), 'LvCount': dbus.UInt64(1)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/HiddenLv/0, com.redhat.lvmdbus1.LvCommon, {'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'Active': dbus.Boolean(True), 'Attr': dbus.String('Cwi-ao----'), 'Name': dbus.String('[owqepwtz_lv_cpool_cdata]')}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/HiddenLv/2, com.redhat.lvmdbus1.LvCommon, {'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'Active': dbus.Boolean(True), 'Attr': dbus.String('ewi-ao----'), 'Name': dbus.String('[owqepwtz_lv_cpool_cmeta]')}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/4, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/2'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/0')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[owqepwtz_lv_cpool]'), 'Uuid': dbus.String('cyI2wL-ZD9H-8KSe-csbt-60x3-0jeK-DHuxXx')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/0'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/2')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/3, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('o', 'origin'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'origin', 'cacheorigin'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('owi-aoC---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String(''), 'Name': dbus.String('[vqodrqws_lv_corig]'), 'Uuid': dbus.String('GxloLT-SNa1-BCGE-cq3v-fbWo-BHzL-jOEzJR')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/3, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/4'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/3'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146ndegvcgc_vg/vqodrqws_lv'), 'Name': dbus.String('vqodrqws_lv'), 'Uuid': dbus.String('yhVEGv-yGk3-Og4f-cbKh-LhWu-6ZWk-E8BV8N')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/4')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function LvCachePool._cache_lv at 0x7fefac0b3d00>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/5 at 0x7fefabfd46d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/5 at 0x7fefabfd46d0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/5, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/5 at 0x7fefabfd46d0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/5 at 0x7fefabfd46d0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/3')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/5 at 0x7fefabfd46d0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/3')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/5, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/3 at 0x7fefabf9a8f0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/3 at 0x7fefabf9a8f0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/3 at 0x7fefabf9a8f0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/3 at 0x7fefabf9a8f0>, dbus.String('com.redhat.lvmdbus1.CachedLv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/4')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/3 at 0x7fefabf9a8f0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/4'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/3'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146ndegvcgc_vg/vqodrqws_lv'), 'Name': dbus.String('vqodrqws_lv'), 'Uuid': dbus.String('yhVEGv-yGk3-Og4f-cbKh-LhWu-6ZWk-E8BV8N')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/6, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function LvCacheLv._detach_lv at 0x7fefac0d81f0> with args (dbus.String('yhVEGv-yGk3-Og4f-cbKh-LhWu-6ZWk-E8BV8N'), 'LVMTEST15146ndegvcgc_vg/vqodrqws_lv', dbus.Dictionary({}, signature=dbus.Signature('sv')), dbus.Boolean(True)) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/4, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachePool'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/3, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachedLv'])
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '6'), ('6', '8'), ('14', '1585')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/Lv/4', [('6', '13', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(8), 'MdaFreeBytes': dbus.UInt64(519168), 'UsedBytes': dbus.UInt64(33554432), 'FreeBytes': dbus.UInt64(6673137664)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(519168)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(519168)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(519168)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(519168)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(519168)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/0, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/4'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(519168), 'Seqno': dbus.UInt64(9), 'FreeCount': dbus.UInt64(9586), 'FreeBytes': dbus.UInt64(40206598144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/4, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/0'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146ndegvcgc_vg/vqodrqws_lv'), 'Name': dbus.String('vqodrqws_lv'), 'Uuid': dbus.String('yhVEGv-yGk3-Og4f-cbKh-LhWu-6ZWk-E8BV8N')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/3, ['com.redhat.lvmdbus1.LvCommon'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/1, ['com.redhat.lvmdbus1.LvCommon'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/0, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachedLv'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/2, ['com.redhat.lvmdbus1.LvCommon'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function LvCacheLv._detach_lv at 0x7fefac0d81f0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/6 at 0x7fefabfd4460>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/6 at 0x7fefabfd4460>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/6, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/6 at 0x7fefabfd4460>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/6 at 0x7fefabfd4460>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/4')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/6 at 0x7fefabfd4460>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/4')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/6, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/7, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._remove at 0x7fefac09ab90> with args ('uA7hna-PA8o-2r1u-yLfK-esuB-gBrk-ft74Fg', 'LVMTEST15146ndegvcgc_vg', dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/4, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Vg/0, ['com.redhat.lvmdbus1.Vg', 'com.redhat.lvmdbus1.VgVdo'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._remove at 0x7fefac09ab90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/7 at 0x7fefabf9b790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/7 at 0x7fefabf9b790>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/7, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/7 at 0x7fefabf9b790>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/7 at 0x7fefabf9b790>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/7 at 0x7fefabf9b790>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/7, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/8, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._create_vg at 0x7fefac126b00> with args (dbus.String('LVMTEST15146nfeijszf_vg'), dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/1'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/2'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/3'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/4'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/5')], signature=dbus.Signature('o')), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Vg/1, {'com.redhat.lvmdbus1.Vg': {'Name': 'LVMTEST15146nfeijszf_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array([], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(519168), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(1), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(0), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9594), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40240152576), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('LYXDJ6-yIj1-tTGM-aXmj-KHxJ-Lybj-oxBMaX')}, 'com.redhat.lvmdbus1.VgVdo': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._create_vg at 0x7fefac126b00>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/8 at 0x7fefabf9bb50>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/8 at 0x7fefabf9bb50>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/8, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/8 at 0x7fefabf9bb50>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/8 at 0x7fefabf9bb50>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/8 at 0x7fefabf9bb50>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/8, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146nfeijszf_vg'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146nfeijszf_vg, result = /com/redhat/lvmdbus1/Vg/1
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = (/com/redhat/lvmdbus1/Vg/1)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/1 at 0x7fefabf9a920>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/1 at 0x7fefabf9a920>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/1 at 0x7fefabf9a920>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Name': 'LVMTEST15146nfeijszf_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array([], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(519168), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(1), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(0), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9594), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40240152576), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('LYXDJ6-yIj1-tTGM-aXmj-KHxJ-Lybj-oxBMaX')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/1 at 0x7fefabf9a920>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/9, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._lv_create_linear at 0x7fefac09b1c0> with args ('LYXDJ6-yIj1-tTGM-aXmj-KHxJ-Lybj-oxBMaX', 'LVMTEST15146nfeijszf_vg', dbus.String('ecfrkjbv_lv'), dbus.UInt64(8388608), dbus.Boolean(False), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '1597')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/Lv/5', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(2), 'UsedBytes': dbus.UInt64(8388608), 'FreeBytes': dbus.UInt64(6698303488)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/1, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/5'], signature=dbus.Signature('o')), 'Seqno': dbus.UInt64(2), 'LvCount': dbus.UInt64(1), 'FreeCount': dbus.UInt64(9592), 'FreeBytes': dbus.UInt64(40231763968)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/5, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/ecfrkjbv_lv'), 'Name': dbus.String('ecfrkjbv_lv'), 'Uuid': dbus.String('lmVXUD-LOfI-cHPY-nw2G-xnt2-j0wt-IdgruD')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._lv_create_linear at 0x7fefac09b1c0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/9 at 0x7fefabf9b400>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/9 at 0x7fefabf9b400>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/9, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/9 at 0x7fefabf9b400>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/9 at 0x7fefabf9b400>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/9 at 0x7fefabf9b400>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/5')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/9, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/5 at 0x7fefabf9af20>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/5 at 0x7fefabf9af20>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/5 at 0x7fefabf9af20>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/5 at 0x7fefabf9af20>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/ecfrkjbv_lv'), 'Name': dbus.String('ecfrkjbv_lv'), 'Uuid': dbus.String('lmVXUD-LOfI-cHPY-nw2G-xnt2-j0wt-IdgruD')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146nfeijszf_vg/ecfrkjbv_lv'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146nfeijszf_vg/ecfrkjbv_lv, result = /com/redhat/lvmdbus1/Lv/5
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = (/com/redhat/lvmdbus1/Lv/5)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/10, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._lv_create_linear at 0x7fefac09b1c0> with args ('LYXDJ6-yIj1-tTGM-aXmj-KHxJ-Lybj-oxBMaX', 'LVMTEST15146nfeijszf_vg', dbus.String('sxjizdto_lv'), dbus.UInt64(8388608), dbus.Boolean(False), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '1595')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/Lv/6', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/Lv/5', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(4), 'MdaFreeBytes': dbus.UInt64(518656), 'UsedBytes': dbus.UInt64(16777216), 'FreeBytes': dbus.UInt64(6689914880)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/1, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/5', '/com/redhat/lvmdbus1/Lv/6'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(518656), 'Seqno': dbus.UInt64(3), 'LvCount': dbus.UInt64(2), 'FreeCount': dbus.UInt64(9590), 'FreeBytes': dbus.UInt64(40223375360)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/6, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/sxjizdto_lv'), 'Name': dbus.String('sxjizdto_lv'), 'Uuid': dbus.String('BAk0A4-d1mJ-v4Jd-c5wr-SSWO-1R1E-trmFXM')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._lv_create_linear at 0x7fefac09b1c0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/10 at 0x7fefabf98520>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/10 at 0x7fefabf98520>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/10, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/10 at 0x7fefabf98520>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/10 at 0x7fefabf98520>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/6')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/10 at 0x7fefabf98520>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/6')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/10, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/6 at 0x7fefabf9a440>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/6 at 0x7fefabf9a440>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/6 at 0x7fefabf9a440>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/6 at 0x7fefabf9a440>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/sxjizdto_lv'), 'Name': dbus.String('sxjizdto_lv'), 'Uuid': dbus.String('BAk0A4-d1mJ-v4Jd-c5wr-SSWO-1R1E-trmFXM')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146nfeijszf_vg/sxjizdto_lv'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146nfeijszf_vg/sxjizdto_lv, result = /com/redhat/lvmdbus1/Lv/6
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = (/com/redhat/lvmdbus1/Lv/6)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/11, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._create_pool at 0x7fefac09b640> with args ('LYXDJ6-yIj1-tTGM-aXmj-KHxJ-Lybj-oxBMaX', 'LVMTEST15146nfeijszf_vg', dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/5'), dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/6'), dbus.Dictionary({}, signature=dbus.Signature('sv')), <function vg_create_cache_pool at 0x7fefac04f1c0>) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/5, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/6, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '1593')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/5', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/6', [('4', '5', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/7', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(6), 'MdaFreeBytes': dbus.UInt64(518144), 'UsedBytes': dbus.UInt64(25165824), 'FreeBytes': dbus.UInt64(6681526272)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/1, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/CachePool/1', '/com/redhat/lvmdbus1/HiddenLv/7', '/com/redhat/lvmdbus1/HiddenLv/5', '/com/redhat/lvmdbus1/HiddenLv/6'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(518144), 'Seqno': dbus.UInt64(5), 'LvCount': dbus.UInt64(1), 'FreeCount': dbus.UInt64(9588), 'FreeBytes': dbus.UInt64(40214986752)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/5, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[sxjizdto_lv_cdata]'), 'Uuid': dbus.String('BAk0A4-d1mJ-v4Jd-c5wr-SSWO-1R1E-trmFXM')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/7, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[sxjizdto_lv_cmeta]'), 'Uuid': dbus.String('lmVXUD-LOfI-cHPY-nw2G-xnt2-j0wt-IdgruD')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/6, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('QFVsZf-bnOA-wC01-BoUl-Cdp2-Sc2R-IMdNhC')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/CachePool/1, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/7'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/5')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/sxjizdto_lv'), 'Name': dbus.String('sxjizdto_lv'), 'Uuid': dbus.String('GfJHyF-CVY4-FzSl-4vN2-fq3q-f5Vk-ozDJ4g')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/5'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/7')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._create_pool at 0x7fefac09b640>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/11 at 0x7fefabf9bcd0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/11 at 0x7fefabf9bcd0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/11, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/11 at 0x7fefabf9bcd0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/11 at 0x7fefabf9bcd0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/CachePool/1')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/11 at 0x7fefabf9bcd0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/CachePool/1')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/11, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/1 at 0x7fefabf9a2f0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/1 at 0x7fefabf9a2f0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/1 at 0x7fefabf9a2f0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/1 at 0x7fefabf9a2f0>, dbus.String('com.redhat.lvmdbus1.CachePool')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/5'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/7')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/1 at 0x7fefabf9a2f0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/7'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/5')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/sxjizdto_lv'), 'Name': dbus.String('sxjizdto_lv'), 'Uuid': dbus.String('GfJHyF-CVY4-FzSl-4vN2-fq3q-f5Vk-ozDJ4g')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/12, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._lv_create_linear at 0x7fefac09b1c0> with args ('LYXDJ6-yIj1-tTGM-aXmj-KHxJ-Lybj-oxBMaX', 'LVMTEST15146nfeijszf_vg', dbus.String('otjspgmi_lv'), dbus.UInt64(33554432), dbus.Boolean(False), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '8'), ('14', '1585')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/5', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/6', [('4', '5', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/7', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/Lv/7', [('6', '13', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(14), 'UsedBytes': dbus.UInt64(58720256), 'FreeBytes': dbus.UInt64(6647971840)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/1, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/CachePool/1', '/com/redhat/lvmdbus1/Lv/7', '/com/redhat/lvmdbus1/HiddenLv/7', '/com/redhat/lvmdbus1/HiddenLv/5', '/com/redhat/lvmdbus1/HiddenLv/6'], signature=dbus.Signature('o')), 'Seqno': dbus.UInt64(6), 'LvCount': dbus.UInt64(2), 'FreeCount': dbus.UInt64(9580), 'FreeBytes': dbus.UInt64(40181432320)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/7, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/otjspgmi_lv'), 'Name': dbus.String('otjspgmi_lv'), 'Uuid': dbus.String('mSRueN-3Jll-rQW6-5YDC-6P1B-MXW1-jxlXNx')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._lv_create_linear at 0x7fefac09b1c0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/12 at 0x7fefabf98d60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/12 at 0x7fefabf98d60>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/12, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/12 at 0x7fefabf98d60>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/12 at 0x7fefabf98d60>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/7')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/12 at 0x7fefabf98d60>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/7')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/12, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/7 at 0x7fefabf9a560>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/7 at 0x7fefabf9a560>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/7 at 0x7fefabf9a560>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/7 at 0x7fefabf9a560>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/otjspgmi_lv'), 'Name': dbus.String('otjspgmi_lv'), 'Uuid': dbus.String('mSRueN-3Jll-rQW6-5YDC-6P1B-MXW1-jxlXNx')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146nfeijszf_vg/otjspgmi_lv'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146nfeijszf_vg/otjspgmi_lv, result = /com/redhat/lvmdbus1/Lv/7
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = (/com/redhat/lvmdbus1/Lv/7)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/13, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function LvCachePool._cache_lv at 0x7fefac0b3d00> with args (dbus.String('GfJHyF-CVY4-FzSl-4vN2-fq3q-f5Vk-ozDJ4g'), 'LVMTEST15146nfeijszf_vg/sxjizdto_lv', dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/7'), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/CachePool/1, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachePool'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/7, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/5', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/8', [('6', '13', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/6', [('4', '5', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/7', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/1, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/8', '/com/redhat/lvmdbus1/HiddenLv/9', '/com/redhat/lvmdbus1/HiddenLv/7', '/com/redhat/lvmdbus1/HiddenLv/5', '/com/redhat/lvmdbus1/HiddenLv/6', '/com/redhat/lvmdbus1/HiddenLv/8'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(517632), 'Seqno': dbus.UInt64(7), 'LvCount': dbus.UInt64(1)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/HiddenLv/5, com.redhat.lvmdbus1.LvCommon, {'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'Active': dbus.Boolean(True), 'Attr': dbus.String('Cwi-ao----'), 'Name': dbus.String('[sxjizdto_lv_cpool_cdata]')}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/HiddenLv/7, com.redhat.lvmdbus1.LvCommon, {'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'Active': dbus.Boolean(True), 'Attr': dbus.String('ewi-ao----'), 'Name': dbus.String('[sxjizdto_lv_cpool_cmeta]')}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/8, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('o', 'origin'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'origin', 'cacheorigin'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('owi-aoC---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String(''), 'Name': dbus.String('[otjspgmi_lv_corig]'), 'Uuid': dbus.String('LnLcZr-kuNZ-BFqx-FIm6-b6SW-pzE0-wJEB92')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/9, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/7'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/5')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[sxjizdto_lv_cpool]'), 'Uuid': dbus.String('GfJHyF-CVY4-FzSl-4vN2-fq3q-f5Vk-ozDJ4g')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/5'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/7')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/8, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/9'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/8'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/otjspgmi_lv'), 'Name': dbus.String('otjspgmi_lv'), 'Uuid': dbus.String('mSRueN-3Jll-rQW6-5YDC-6P1B-MXW1-jxlXNx')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/9')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function LvCachePool._cache_lv at 0x7fefac0b3d00>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/13 at 0x7fefabf98820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/13 at 0x7fefabf98820>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/13, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/13 at 0x7fefabf98820>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/13 at 0x7fefabf98820>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/13 at 0x7fefabf98820>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/8')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/13, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/8 at 0x7fefabf993f0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/8 at 0x7fefabf993f0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/8 at 0x7fefabf993f0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/8 at 0x7fefabf993f0>, dbus.String('com.redhat.lvmdbus1.CachedLv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/9')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/8 at 0x7fefabf993f0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/9'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/8'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/otjspgmi_lv'), 'Name': dbus.String('otjspgmi_lv'), 'Uuid': dbus.String('mSRueN-3Jll-rQW6-5YDC-6P1B-MXW1-jxlXNx')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/14, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function LvCacheLv._detach_lv at 0x7fefac0d81f0> with args (dbus.String('mSRueN-3Jll-rQW6-5YDC-6P1B-MXW1-jxlXNx'), 'LVMTEST15146nfeijszf_vg/otjspgmi_lv', dbus.Dictionary({}, signature=dbus.Signature('sv')), dbus.Boolean(False)) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/9, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachePool'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/8, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachedLv'])
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/5', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/6', [('4', '5', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/7', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/Lv/9', [('6', '13', 'linear')])], signature=dbus.Signature('(oa(tts))'))}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/1, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/9', '/com/redhat/lvmdbus1/CachePool/2', '/com/redhat/lvmdbus1/HiddenLv/7', '/com/redhat/lvmdbus1/HiddenLv/5', '/com/redhat/lvmdbus1/HiddenLv/6'], signature=dbus.Signature('o')), 'Seqno': dbus.UInt64(9), 'LvCount': dbus.UInt64(2)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/HiddenLv/5, com.redhat.lvmdbus1.LvCommon, {'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Active': dbus.Boolean(False), 'Attr': dbus.String('Cwi-------'), 'Name': dbus.String('[sxjizdto_lv_cdata]')}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/HiddenLv/7, com.redhat.lvmdbus1.LvCommon, {'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Active': dbus.Boolean(False), 'Attr': dbus.String('ewi-------'), 'Name': dbus.String('[sxjizdto_lv_cmeta]')}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/9, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/otjspgmi_lv'), 'Name': dbus.String('otjspgmi_lv'), 'Uuid': dbus.String('mSRueN-3Jll-rQW6-5YDC-6P1B-MXW1-jxlXNx')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/CachePool/2, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/7'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/5')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/1'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146nfeijszf_vg/sxjizdto_lv'), 'Name': dbus.String('sxjizdto_lv'), 'Uuid': dbus.String('GfJHyF-CVY4-FzSl-4vN2-fq3q-f5Vk-ozDJ4g')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/5'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/7')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/8, ['com.redhat.lvmdbus1.LvCommon'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function LvCacheLv._detach_lv at 0x7fefac0d81f0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/14 at 0x7fefabf9bfd0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/14 at 0x7fefabf9bfd0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/14, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/14 at 0x7fefabf9bfd0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/14 at 0x7fefabf9bfd0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/9')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/14 at 0x7fefabf9bfd0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/9')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/14, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/15, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._remove at 0x7fefac09ab90> with args ('LYXDJ6-yIj1-tTGM-aXmj-KHxJ-Lybj-oxBMaX', 'LVMTEST15146nfeijszf_vg', dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/6, ['com.redhat.lvmdbus1.LvCommon'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/5, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachedLv'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/7, ['com.redhat.lvmdbus1.LvCommon'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/CachePool/2, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachePool'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/9, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Vg/1, ['com.redhat.lvmdbus1.Vg', 'com.redhat.lvmdbus1.VgVdo'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._remove at 0x7fefac09ab90>
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/15 at 0x7fefabf9a260>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/15 at 0x7fefabf9a260>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/15, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/15 at 0x7fefabf9a260>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/15 at 0x7fefabf9a260>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/15 at 0x7fefabf9a260>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/15, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')}}, '/com/redhat/lvmdbus1/Pv/1': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')}}, '/com/redhat/lvmdbus1/Pv/2': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')}}, '/com/redhat/lvmdbus1/Pv/3': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')}}, '/com/redhat/lvmdbus1/Pv/4': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')}}, '/com/redhat/lvmdbus1/Pv/5': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')}}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('com.redhat.lvmdbus1.Manager')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Version': dbus.String('1.1.0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')}}, '/com/redhat/lvmdbus1/Pv/1': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')}}, '/com/redhat/lvmdbus1/Pv/2': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')}}, '/com/redhat/lvmdbus1/Pv/3': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')}}, '/com/redhat/lvmdbus1/Pv/4': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')}}, '/com/redhat/lvmdbus1/Pv/5': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')}}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('com.redhat.lvmdbus1.Manager')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Version': dbus.String('1.1.0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')}}, '/com/redhat/lvmdbus1/Pv/1': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')}}, '/com/redhat/lvmdbus1/Pv/2': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')}}, '/com/redhat/lvmdbus1/Pv/3': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')}}, '/com/redhat/lvmdbus1/Pv/4': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')}}, '/com/redhat/lvmdbus1/Pv/5': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')}}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('com.redhat.lvmdbus1.Manager')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Version': dbus.String('1.1.0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/16, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._create_vg at 0x7fefac126b00> with args (dbus.String('LVMTEST15146tqgtiedh_vg'), dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/1'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/2'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/3'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/4'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/5')], signature=dbus.Signature('o')), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Vg/2, {'com.redhat.lvmdbus1.Vg': {'Name': 'LVMTEST15146tqgtiedh_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array([], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(519168), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(1), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(0), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9594), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40240152576), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08')}, 'com.redhat.lvmdbus1.VgVdo': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._create_vg at 0x7fefac126b00>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/16 at 0x7fefabf98a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/16 at 0x7fefabf98a60>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/16, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/16 at 0x7fefabf98a60>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/16 at 0x7fefabf98a60>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/16 at 0x7fefabf98a60>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/16, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146tqgtiedh_vg'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146tqgtiedh_vg, result = /com/redhat/lvmdbus1/Vg/2
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = (/com/redhat/lvmdbus1/Vg/2)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Name': 'LVMTEST15146tqgtiedh_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array([], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(519168), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(1), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(0), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9594), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40240152576), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/17, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._lv_create_linear at 0x7fefac09b1c0> with args ('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08', 'LVMTEST15146tqgtiedh_vg', dbus.String('knfrcnrq_lv'), dbus.UInt64(8388608), dbus.Boolean(False), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '1597')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/Lv/10', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(2), 'UsedBytes': dbus.UInt64(8388608), 'FreeBytes': dbus.UInt64(6698303488)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/2, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/10'], signature=dbus.Signature('o')), 'Seqno': dbus.UInt64(2), 'LvCount': dbus.UInt64(1), 'FreeCount': dbus.UInt64(9592), 'FreeBytes': dbus.UInt64(40231763968)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/10, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/knfrcnrq_lv'), 'Name': dbus.String('knfrcnrq_lv'), 'Uuid': dbus.String('9YiGS9-8n2O-s3sg-AWjp-oGU6-qbYb-MYBNXy')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._lv_create_linear at 0x7fefac09b1c0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/17 at 0x7fefabf98640>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/17 at 0x7fefabf98640>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/17, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/17 at 0x7fefabf98640>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/17 at 0x7fefabf98640>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/10')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/17 at 0x7fefabf98640>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/10')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/17, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/10 at 0x7fefabf99120>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/10 at 0x7fefabf99120>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/10 at 0x7fefabf99120>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/10 at 0x7fefabf99120>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/knfrcnrq_lv'), 'Name': dbus.String('knfrcnrq_lv'), 'Uuid': dbus.String('9YiGS9-8n2O-s3sg-AWjp-oGU6-qbYb-MYBNXy')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146tqgtiedh_vg/knfrcnrq_lv'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146tqgtiedh_vg/knfrcnrq_lv, result = /com/redhat/lvmdbus1/Lv/10
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = (/com/redhat/lvmdbus1/Lv/10)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/18, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._lv_create_linear at 0x7fefac09b1c0> with args ('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08', 'LVMTEST15146tqgtiedh_vg', dbus.String('phdhoodk_lv'), dbus.UInt64(8388608), dbus.Boolean(False), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '1595')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/Lv/10', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/Lv/11', [('2', '3', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(4), 'MdaFreeBytes': dbus.UInt64(518656), 'UsedBytes': dbus.UInt64(16777216), 'FreeBytes': dbus.UInt64(6689914880)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/2, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/10', '/com/redhat/lvmdbus1/Lv/11'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(518656), 'Seqno': dbus.UInt64(3), 'LvCount': dbus.UInt64(2), 'FreeCount': dbus.UInt64(9590), 'FreeBytes': dbus.UInt64(40223375360)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/11, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/phdhoodk_lv'), 'Name': dbus.String('phdhoodk_lv'), 'Uuid': dbus.String('DtZ0x8-KiNG-OSxQ-3G2T-Ilks-PoD9-HSTihY')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._lv_create_linear at 0x7fefac09b1c0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/18 at 0x7fefabf99db0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/18 at 0x7fefabf99db0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/18, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/18 at 0x7fefabf99db0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/18 at 0x7fefabf99db0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/11')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/18 at 0x7fefabf99db0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/11')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/18, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/11 at 0x7fefabf9a440>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/11 at 0x7fefabf9a440>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/11 at 0x7fefabf9a440>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/11 at 0x7fefabf9a440>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/phdhoodk_lv'), 'Name': dbus.String('phdhoodk_lv'), 'Uuid': dbus.String('DtZ0x8-KiNG-OSxQ-3G2T-Ilks-PoD9-HSTihY')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146tqgtiedh_vg/phdhoodk_lv'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146tqgtiedh_vg/phdhoodk_lv, result = /com/redhat/lvmdbus1/Lv/11
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = (/com/redhat/lvmdbus1/Lv/11)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/19, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._create_pool at 0x7fefac09b640> with args ('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08', 'LVMTEST15146tqgtiedh_vg', dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/10'), dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/11'), dbus.Dictionary({}, signature=dbus.Signature('sv')), <function vg_create_cache_pool at 0x7fefac04f1c0>) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/10, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/11, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '1593')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/10', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/11', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/12', [('4', '5', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(6), 'MdaFreeBytes': dbus.UInt64(518144), 'UsedBytes': dbus.UInt64(25165824), 'FreeBytes': dbus.UInt64(6681526272)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/2, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/CachePool/3', '/com/redhat/lvmdbus1/HiddenLv/10', '/com/redhat/lvmdbus1/HiddenLv/11', '/com/redhat/lvmdbus1/HiddenLv/12'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(518144), 'Seqno': dbus.UInt64(5), 'LvCount': dbus.UInt64(1), 'FreeCount': dbus.UInt64(9588), 'FreeBytes': dbus.UInt64(40214986752)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/11, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cdata]'), 'Uuid': dbus.String('DtZ0x8-KiNG-OSxQ-3G2T-Ilks-PoD9-HSTihY')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/10, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cmeta]'), 'Uuid': dbus.String('9YiGS9-8n2O-s3sg-AWjp-oGU6-qbYb-MYBNXy')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/12, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('sMxswI-5LLX-N2zS-nqEW-d5M5-RNyi-ub5r5o')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/CachePool/3, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/phdhoodk_lv'), 'Name': dbus.String('phdhoodk_lv'), 'Uuid': dbus.String('OPgujz-v8tt-2gjs-up5A-bBqV-H5yo-nJk6QS')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._create_pool at 0x7fefac09b640>
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/19 at 0x7fefabf9bac0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/19 at 0x7fefabf9bac0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/19, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/19 at 0x7fefabf9bac0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/19 at 0x7fefabf9bac0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/CachePool/3')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/19 at 0x7fefabf9bac0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/CachePool/3')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/19, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/3 at 0x7fefabf9b670>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/3 at 0x7fefabf9b670>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/3 at 0x7fefabf9b670>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/3 at 0x7fefabf9b670>, dbus.String('com.redhat.lvmdbus1.CachePool')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/3 at 0x7fefabf9b670>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/phdhoodk_lv'), 'Name': dbus.String('phdhoodk_lv'), 'Uuid': dbus.String('OPgujz-v8tt-2gjs-up5A-bBqV-H5yo-nJk6QS')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/20, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._lv_create_linear at 0x7fefac09b1c0> with args ('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08', 'LVMTEST15146tqgtiedh_vg', dbus.String('gdfxrsxg_lv'), dbus.UInt64(33554432), dbus.Boolean(False), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '8'), ('14', '1585')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/10', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/11', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/Lv/12', [('6', '13', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/12', [('4', '5', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(14), 'UsedBytes': dbus.UInt64(58720256), 'FreeBytes': dbus.UInt64(6647971840)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/2, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/CachePool/3', '/com/redhat/lvmdbus1/Lv/12', '/com/redhat/lvmdbus1/HiddenLv/10', '/com/redhat/lvmdbus1/HiddenLv/11', '/com/redhat/lvmdbus1/HiddenLv/12'], signature=dbus.Signature('o')), 'Seqno': dbus.UInt64(6), 'LvCount': dbus.UInt64(2), 'FreeCount': dbus.UInt64(9580), 'FreeBytes': dbus.UInt64(40181432320)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/12, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/gdfxrsxg_lv'), 'Name': dbus.String('gdfxrsxg_lv'), 'Uuid': dbus.String('GQLWVG-y5px-kmPD-d9Jc-aOS3-Tzvf-cgfeFw')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._lv_create_linear at 0x7fefac09b1c0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/20 at 0x7fefabf9a8f0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/20 at 0x7fefabf9a8f0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/20, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/20 at 0x7fefabf9a8f0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/20 at 0x7fefabf9a8f0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/12')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/20 at 0x7fefabf9a8f0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/12')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/20, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/12 at 0x7fefabf9b760>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/12 at 0x7fefabf9b760>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/12 at 0x7fefabf9b760>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/12 at 0x7fefabf9b760>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/gdfxrsxg_lv'), 'Name': dbus.String('gdfxrsxg_lv'), 'Uuid': dbus.String('GQLWVG-y5px-kmPD-d9Jc-aOS3-Tzvf-cgfeFw')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146tqgtiedh_vg/gdfxrsxg_lv'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146tqgtiedh_vg/gdfxrsxg_lv, result = /com/redhat/lvmdbus1/Lv/12
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = (/com/redhat/lvmdbus1/Lv/12)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/21, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function LvCachePool._cache_lv at 0x7fefac0b3d00> with args (dbus.String('OPgujz-v8tt-2gjs-up5A-bBqV-H5yo-nJk6QS'), 'LVMTEST15146tqgtiedh_vg/phdhoodk_lv', dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/12'), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/CachePool/3, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachePool'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/12, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/10', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/11', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/13', [('6', '13', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/12', [('4', '5', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(517632)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/2, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/13', '/com/redhat/lvmdbus1/HiddenLv/14', '/com/redhat/lvmdbus1/HiddenLv/10', '/com/redhat/lvmdbus1/HiddenLv/11', '/com/redhat/lvmdbus1/HiddenLv/12', '/com/redhat/lvmdbus1/HiddenLv/13'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(517632), 'Seqno': dbus.UInt64(7), 'LvCount': dbus.UInt64(1)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/HiddenLv/11, com.redhat.lvmdbus1.LvCommon, {'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'Active': dbus.Boolean(True), 'Attr': dbus.String('Cwi-ao----'), 'Name': dbus.String('[phdhoodk_lv_cpool_cdata]')}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/HiddenLv/10, com.redhat.lvmdbus1.LvCommon, {'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'Active': dbus.Boolean(True), 'Attr': dbus.String('ewi-ao----'), 'Name': dbus.String('[phdhoodk_lv_cpool_cmeta]')}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/13, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('o', 'origin'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'origin', 'cacheorigin'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('owi-aoC---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String(''), 'Name': dbus.String('[gdfxrsxg_lv_corig]'), 'Uuid': dbus.String('JKfDWF-k4Sk-nIJr-Unp2-dOct-1iDZ-2ipB8D')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/14, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool]'), 'Uuid': dbus.String('OPgujz-v8tt-2gjs-up5A-bBqV-H5yo-nJk6QS')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/13, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/13'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/gdfxrsxg_lv'), 'Name': dbus.String('gdfxrsxg_lv'), 'Uuid': dbus.String('GQLWVG-y5px-kmPD-d9Jc-aOS3-Tzvf-cgfeFw')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function LvCachePool._cache_lv at 0x7fefac0b3d00>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/21 at 0x7fefabf98820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/21 at 0x7fefabf98820>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/21, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/21 at 0x7fefabf98820>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/21 at 0x7fefabf98820>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/13')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/21 at 0x7fefabf98820>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/13')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/21, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.CachedLv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/13'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/gdfxrsxg_lv'), 'Name': dbus.String('gdfxrsxg_lv'), 'Uuid': dbus.String('GQLWVG-y5px-kmPD-d9Jc-aOS3-Tzvf-cgfeFw')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '8'), ('14', '1585')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/10', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/11', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/13', [('6', '13', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/12', [('4', '5', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(14), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(58720256), 'FreeBytes': dbus.UInt64(6647971840), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')}}, '/com/redhat/lvmdbus1/Pv/1': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')}}, '/com/redhat/lvmdbus1/Pv/2': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')}}, '/com/redhat/lvmdbus1/Pv/3': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')}}, '/com/redhat/lvmdbus1/Pv/4': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')}}, '/com/redhat/lvmdbus1/Pv/5': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')}}, '/com/redhat/lvmdbus1/Lv/13': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/13'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/gdfxrsxg_lv'), 'Name': dbus.String('gdfxrsxg_lv'), 'Uuid': dbus.String('GQLWVG-y5px-kmPD-d9Jc-aOS3-Tzvf-cgfeFw')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14')}}, '/com/redhat/lvmdbus1/HiddenLv/14': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool]'), 'Uuid': dbus.String('OPgujz-v8tt-2gjs-up5A-bBqV-H5yo-nJk6QS')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10')}}, '/com/redhat/lvmdbus1/HiddenLv/10': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cmeta]'), 'Uuid': dbus.String('9YiGS9-8n2O-s3sg-AWjp-oGU6-qbYb-MYBNXy')}}, '/com/redhat/lvmdbus1/HiddenLv/11': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cdata]'), 'Uuid': dbus.String('DtZ0x8-KiNG-OSxQ-3G2T-Ilks-PoD9-HSTihY')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/')}}, '/com/redhat/lvmdbus1/HiddenLv/12': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('sMxswI-5LLX-N2zS-nqEW-d5M5-RNyi-ub5r5o')}}, '/com/redhat/lvmdbus1/HiddenLv/13': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('o', 'origin'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'origin', 'cacheorigin'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('owi-aoC---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String(''), 'Name': dbus.String('[gdfxrsxg_lv_corig]'), 'Uuid': dbus.String('JKfDWF-k4Sk-nIJr-Unp2-dOct-1iDZ-2ipB8D')}}, '/com/redhat/lvmdbus1/Vg/2': {'com.redhat.lvmdbus1.Vg': {'Name': 'LVMTEST15146tqgtiedh_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/13', '/com/redhat/lvmdbus1/HiddenLv/14', '/com/redhat/lvmdbus1/HiddenLv/10', '/com/redhat/lvmdbus1/HiddenLv/11', '/com/redhat/lvmdbus1/HiddenLv/12', '/com/redhat/lvmdbus1/HiddenLv/13'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(517632), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(7), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9580), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40181432320), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08')}, 'com.redhat.lvmdbus1.VgVdo': {}}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('com.redhat.lvmdbus1.Manager')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Version': dbus.String('1.1.0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '8'), ('14', '1585')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/10', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/11', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/13', [('6', '13', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/12', [('4', '5', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(14), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(58720256), 'FreeBytes': dbus.UInt64(6647971840), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.CachedLv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/13'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/gdfxrsxg_lv'), 'Name': dbus.String('gdfxrsxg_lv'), 'Uuid': dbus.String('GQLWVG-y5px-kmPD-d9Jc-aOS3-Tzvf-cgfeFw')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('com.redhat.lvmdbus1.CachePool')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool]'), 'Uuid': dbus.String('OPgujz-v8tt-2gjs-up5A-bBqV-H5yo-nJk6QS')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/10 at 0x7fefabf98af0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/10 at 0x7fefabf98af0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/10 at 0x7fefabf98af0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cmeta]'), 'Uuid': dbus.String('9YiGS9-8n2O-s3sg-AWjp-oGU6-qbYb-MYBNXy')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('com.redhat.lvmdbus1.CachedLv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'CachePool': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cdata]'), 'Uuid': dbus.String('DtZ0x8-KiNG-OSxQ-3G2T-Ilks-PoD9-HSTihY')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/12 at 0x7fefabf9ab60>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/12 at 0x7fefabf9ab60>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/12 at 0x7fefabf9ab60>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('sMxswI-5LLX-N2zS-nqEW-d5M5-RNyi-ub5r5o')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/13 at 0x7fefabf9b0a0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/13 at 0x7fefabf9b0a0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/13 at 0x7fefabf9b0a0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'VolumeType': dbus.Struct(('o', 'origin'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'origin', 'cacheorigin'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('owi-aoC---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String(''), 'Name': dbus.String('[gdfxrsxg_lv_corig]'), 'Uuid': dbus.String('JKfDWF-k4Sk-nIJr-Unp2-dOct-1iDZ-2ipB8D')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Name': 'LVMTEST15146tqgtiedh_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/13', '/com/redhat/lvmdbus1/HiddenLv/14', '/com/redhat/lvmdbus1/HiddenLv/10', '/com/redhat/lvmdbus1/HiddenLv/11', '/com/redhat/lvmdbus1/HiddenLv/12', '/com/redhat/lvmdbus1/HiddenLv/13'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(517632), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(7), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9580), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40181432320), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._refresh at 0x7fefac126c20> with args () (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Manager.Refresh - entry
| [ 1:55] ## LVMDBUSD: 15323:15329 - Manager.Refresh - exit 0 0
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._refresh at 0x7fefac126c20>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = (0)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/22, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Lv._rename at 0x7fefac0b16c0> with args (dbus.String('GQLWVG-y5px-kmPD-d9Jc-aOS3-Tzvf-cgfeFw'), 'LVMTEST15146tqgtiedh_vg/gdfxrsxg_lv', dbus.String('renamed_gdfxrsxg_lv'), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/2, com.redhat.lvmdbus1.Vg, {'Seqno': dbus.UInt64(8)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/HiddenLv/14, com.redhat.lvmdbus1.LvCommon, {'SnapPercent': dbus.UInt32(2), 'DataPercent': dbus.UInt32(2)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/HiddenLv/13, com.redhat.lvmdbus1.LvCommon, {'Name': dbus.String('[renamed_gdfxrsxg_lv_corig]')}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Lv/13, com.redhat.lvmdbus1.LvCommon, {'SnapPercent': dbus.UInt32(2), 'DataPercent': dbus.UInt32(2), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/renamed_gdfxrsxg_lv'), 'Name': dbus.String('renamed_gdfxrsxg_lv')}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Lv._rename at 0x7fefac0b16c0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/22 at 0x7fefabf9b7c0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/22 at 0x7fefabf9b7c0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/22, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/22 at 0x7fefabf9b7c0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/22 at 0x7fefabf9b7c0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/22 at 0x7fefabf9b7c0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/22, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '8'), ('14', '1585')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/10', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/11', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/13', [('6', '13', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/12', [('4', '5', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(14), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(58720256), 'FreeBytes': dbus.UInt64(6647971840), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')}}, '/com/redhat/lvmdbus1/Pv/1': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')}}, '/com/redhat/lvmdbus1/Pv/2': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')}}, '/com/redhat/lvmdbus1/Pv/3': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')}}, '/com/redhat/lvmdbus1/Pv/4': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')}}, '/com/redhat/lvmdbus1/Pv/5': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')}}, '/com/redhat/lvmdbus1/Lv/13': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(2), 'DataPercent': dbus.UInt32(2), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/13'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/renamed_gdfxrsxg_lv'), 'Name': dbus.String('renamed_gdfxrsxg_lv'), 'Uuid': dbus.String('GQLWVG-y5px-kmPD-d9Jc-aOS3-Tzvf-cgfeFw')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14')}}, '/com/redhat/lvmdbus1/HiddenLv/14': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(2), 'DataPercent': dbus.UInt32(2), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool]'), 'Uuid': dbus.String('OPgujz-v8tt-2gjs-up5A-bBqV-H5yo-nJk6QS')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10')}}, '/com/redhat/lvmdbus1/HiddenLv/10': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cmeta]'), 'Uuid': dbus.String('9YiGS9-8n2O-s3sg-AWjp-oGU6-qbYb-MYBNXy')}}, '/com/redhat/lvmdbus1/HiddenLv/11': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cdata]'), 'Uuid': dbus.String('DtZ0x8-KiNG-OSxQ-3G2T-Ilks-PoD9-HSTihY')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/')}}, '/com/redhat/lvmdbus1/HiddenLv/12': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('sMxswI-5LLX-N2zS-nqEW-d5M5-RNyi-ub5r5o')}}, '/com/redhat/lvmdbus1/HiddenLv/13': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('o', 'origin'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'origin', 'cacheorigin'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('owi-aoC---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String(''), 'Name': dbus.String('[renamed_gdfxrsxg_lv_corig]'), 'Uuid': dbus.String('JKfDWF-k4Sk-nIJr-Unp2-dOct-1iDZ-2ipB8D')}}, '/com/redhat/lvmdbus1/Vg/2': {'com.redhat.lvmdbus1.Vg': {'Name': 'LVMTEST15146tqgtiedh_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/13', '/com/redhat/lvmdbus1/HiddenLv/14', '/com/redhat/lvmdbus1/HiddenLv/10', '/com/redhat/lvmdbus1/HiddenLv/11', '/com/redhat/lvmdbus1/HiddenLv/12', '/com/redhat/lvmdbus1/HiddenLv/13'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(517632), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(8), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9580), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40181432320), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08')}, 'com.redhat.lvmdbus1.VgVdo': {}}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('com.redhat.lvmdbus1.Manager')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Version': dbus.String('1.1.0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '8'), ('14', '1585')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/10', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/11', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/13', [('6', '13', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/12', [('4', '5', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(14), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(58720256), 'FreeBytes': dbus.UInt64(6647971840), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.CachedLv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(2), 'DataPercent': dbus.UInt32(2), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/13'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/renamed_gdfxrsxg_lv'), 'Name': dbus.String('renamed_gdfxrsxg_lv'), 'Uuid': dbus.String('GQLWVG-y5px-kmPD-d9Jc-aOS3-Tzvf-cgfeFw')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('com.redhat.lvmdbus1.CachePool')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(2), 'DataPercent': dbus.UInt32(2), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool]'), 'Uuid': dbus.String('OPgujz-v8tt-2gjs-up5A-bBqV-H5yo-nJk6QS')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/10 at 0x7fefabf98af0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/10 at 0x7fefabf98af0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/10 at 0x7fefabf98af0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cmeta]'), 'Uuid': dbus.String('9YiGS9-8n2O-s3sg-AWjp-oGU6-qbYb-MYBNXy')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('com.redhat.lvmdbus1.CachedLv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'CachePool': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cdata]'), 'Uuid': dbus.String('DtZ0x8-KiNG-OSxQ-3G2T-Ilks-PoD9-HSTihY')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/12 at 0x7fefabf9ab60>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/12 at 0x7fefabf9ab60>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/12 at 0x7fefabf9ab60>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('sMxswI-5LLX-N2zS-nqEW-d5M5-RNyi-ub5r5o')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/13 at 0x7fefabf9b0a0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/13 at 0x7fefabf9b0a0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/13 at 0x7fefabf9b0a0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'VolumeType': dbus.Struct(('o', 'origin'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'origin', 'cacheorigin'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('owi-aoC---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String(''), 'Name': dbus.String('[renamed_gdfxrsxg_lv_corig]'), 'Uuid': dbus.String('JKfDWF-k4Sk-nIJr-Unp2-dOct-1iDZ-2ipB8D')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Name': 'LVMTEST15146tqgtiedh_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/13', '/com/redhat/lvmdbus1/HiddenLv/14', '/com/redhat/lvmdbus1/HiddenLv/10', '/com/redhat/lvmdbus1/HiddenLv/11', '/com/redhat/lvmdbus1/HiddenLv/12', '/com/redhat/lvmdbus1/HiddenLv/13'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(517632), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(8), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9580), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40181432320), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._refresh at 0x7fefac126c20> with args () (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Manager.Refresh - entry
| [ 1:55] ## LVMDBUSD: 15323:15329 - Manager.Refresh - exit 0 0
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._refresh at 0x7fefac126c20>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = (0)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/1': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')}}, '/com/redhat/lvmdbus1/Pv/2': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')}}, '/com/redhat/lvmdbus1/Pv/3': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')}}, '/com/redhat/lvmdbus1/Pv/4': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')}}, '/com/redhat/lvmdbus1/Pv/5': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '8'), ('14', '1585')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/10', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/11', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/13', [('6', '13', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/12', [('4', '5', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(14), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(58720256), 'FreeBytes': dbus.UInt64(6647971840), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')}}, '/com/redhat/lvmdbus1/Vg/2': {'com.redhat.lvmdbus1.Vg': {'Name': 'LVMTEST15146tqgtiedh_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/13', '/com/redhat/lvmdbus1/HiddenLv/14', '/com/redhat/lvmdbus1/HiddenLv/10', '/com/redhat/lvmdbus1/HiddenLv/11', '/com/redhat/lvmdbus1/HiddenLv/12', '/com/redhat/lvmdbus1/HiddenLv/13'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(517632), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(8), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9580), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40181432320), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08')}, 'com.redhat.lvmdbus1.VgVdo': {}}, '/com/redhat/lvmdbus1/HiddenLv/11': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cdata]'), 'Uuid': dbus.String('DtZ0x8-KiNG-OSxQ-3G2T-Ilks-PoD9-HSTihY')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/')}}, '/com/redhat/lvmdbus1/HiddenLv/10': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cmeta]'), 'Uuid': dbus.String('9YiGS9-8n2O-s3sg-AWjp-oGU6-qbYb-MYBNXy')}}, '/com/redhat/lvmdbus1/HiddenLv/12': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('sMxswI-5LLX-N2zS-nqEW-d5M5-RNyi-ub5r5o')}}, '/com/redhat/lvmdbus1/HiddenLv/14': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(2), 'DataPercent': dbus.UInt32(2), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool]'), 'Uuid': dbus.String('OPgujz-v8tt-2gjs-up5A-bBqV-H5yo-nJk6QS')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10')}}, '/com/redhat/lvmdbus1/HiddenLv/13': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('o', 'origin'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'origin', 'cacheorigin'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('owi-aoC---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String(''), 'Name': dbus.String('[renamed_gdfxrsxg_lv_corig]'), 'Uuid': dbus.String('JKfDWF-k4Sk-nIJr-Unp2-dOct-1iDZ-2ipB8D')}}, '/com/redhat/lvmdbus1/Lv/13': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(2), 'DataPercent': dbus.UInt32(2), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/13'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/renamed_gdfxrsxg_lv'), 'Name': dbus.String('renamed_gdfxrsxg_lv'), 'Uuid': dbus.String('GQLWVG-y5px-kmPD-d9Jc-aOS3-Tzvf-cgfeFw')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14')}}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('com.redhat.lvmdbus1.Manager')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Version': dbus.String('1.1.0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '8'), ('14', '1585')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/10', [('0', '1', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/11', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/13', [('6', '13', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/12', [('4', '5', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(14), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(58720256), 'FreeBytes': dbus.UInt64(6647971840), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Name': 'LVMTEST15146tqgtiedh_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/13', '/com/redhat/lvmdbus1/HiddenLv/14', '/com/redhat/lvmdbus1/HiddenLv/10', '/com/redhat/lvmdbus1/HiddenLv/11', '/com/redhat/lvmdbus1/HiddenLv/12', '/com/redhat/lvmdbus1/HiddenLv/13'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(517632), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(8), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9580), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40181432320), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('com.redhat.lvmdbus1.CachedLv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'CachePool': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/11 at 0x7fefabf986d0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cdata]'), 'Uuid': dbus.String('DtZ0x8-KiNG-OSxQ-3G2T-Ilks-PoD9-HSTihY')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/10 at 0x7fefabf98af0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/10 at 0x7fefabf98af0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/10 at 0x7fefabf98af0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-ao----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool_cmeta]'), 'Uuid': dbus.String('9YiGS9-8n2O-s3sg-AWjp-oGU6-qbYb-MYBNXy')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/12 at 0x7fefabf9ab60>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/12 at 0x7fefabf9ab60>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/12 at 0x7fefabf9ab60>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('sMxswI-5LLX-N2zS-nqEW-d5M5-RNyi-ub5r5o')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('com.redhat.lvmdbus1.CachePool')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/HiddenLv/14 at 0x7fefabf99960>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(2), 'DataPercent': dbus.UInt32(2), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/10'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/11')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[phdhoodk_lv_cpool]'), 'Uuid': dbus.String('OPgujz-v8tt-2gjs-up5A-bBqV-H5yo-nJk6QS')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/13 at 0x7fefabf9b0a0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/13 at 0x7fefabf9b0a0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/13 at 0x7fefabf9b0a0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'VolumeType': dbus.Struct(('o', 'origin'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'origin', 'cacheorigin'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('owi-aoC---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(6), dbus.UInt64(13), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String(''), 'Name': dbus.String('[renamed_gdfxrsxg_lv_corig]'), 'Uuid': dbus.String('JKfDWF-k4Sk-nIJr-Unp2-dOct-1iDZ-2ipB8D')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.CachedLv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'CachePool': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/Lv/13 at 0x7fefabf999f0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(2), 'DataPercent': dbus.UInt32(2), 'Attr': dbus.String('Cwi-a-C---'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/14'), 'OriginLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/13'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'SegType': dbus.Array([dbus.String('cache')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(33554432), 'Path': dbus.String('/dev/LVMTEST15146tqgtiedh_vg/renamed_gdfxrsxg_lv'), 'Name': dbus.String('renamed_gdfxrsxg_lv'), 'Uuid': dbus.String('GQLWVG-y5px-kmPD-d9Jc-aOS3-Tzvf-cgfeFw')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/2'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(517632), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Name': 'LVMTEST15146tqgtiedh_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/13', '/com/redhat/lvmdbus1/HiddenLv/14', '/com/redhat/lvmdbus1/HiddenLv/10', '/com/redhat/lvmdbus1/HiddenLv/11', '/com/redhat/lvmdbus1/HiddenLv/12', '/com/redhat/lvmdbus1/HiddenLv/13'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(517632), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(8), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9580), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40181432320), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Name': 'LVMTEST15146tqgtiedh_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/13', '/com/redhat/lvmdbus1/HiddenLv/14', '/com/redhat/lvmdbus1/HiddenLv/10', '/com/redhat/lvmdbus1/HiddenLv/11', '/com/redhat/lvmdbus1/HiddenLv/12', '/com/redhat/lvmdbus1/HiddenLv/13'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(517632), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(8), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9580), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40181432320), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/2 at 0x7fefabf9afb0>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/23, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._remove at 0x7fefac09ab90> with args ('RKIh6s-nGQb-0UPG-xjIm-hPY4-UDZa-8ojc08', 'LVMTEST15146tqgtiedh_vg', dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/13, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachedLv'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/13, ['com.redhat.lvmdbus1.LvCommon'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/14, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachePool'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/12, ['com.redhat.lvmdbus1.LvCommon'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/10, ['com.redhat.lvmdbus1.LvCommon'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/11, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachedLv'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Vg/2, ['com.redhat.lvmdbus1.Vg', 'com.redhat.lvmdbus1.VgVdo'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._remove at 0x7fefac09ab90>
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/23 at 0x7fefabf9a290>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/23 at 0x7fefabf9a290>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/23, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/23 at 0x7fefabf9a290>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/23 at 0x7fefabf9a290>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/23 at 0x7fefabf9a290>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/23, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')}}, '/com/redhat/lvmdbus1/Pv/1': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')}}, '/com/redhat/lvmdbus1/Pv/2': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')}}, '/com/redhat/lvmdbus1/Pv/3': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')}}, '/com/redhat/lvmdbus1/Pv/4': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')}}, '/com/redhat/lvmdbus1/Pv/5': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')}}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('com.redhat.lvmdbus1.Manager')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Version': dbus.String('1.1.0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')}}, '/com/redhat/lvmdbus1/Pv/1': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')}}, '/com/redhat/lvmdbus1/Pv/2': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')}}, '/com/redhat/lvmdbus1/Pv/3': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')}}, '/com/redhat/lvmdbus1/Pv/4': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')}}, '/com/redhat/lvmdbus1/Pv/5': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')}}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('com.redhat.lvmdbus1.Manager')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Version': dbus.String('1.1.0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/24, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._create_vg at 0x7fefac126b00> with args (dbus.String('LVMTEST15146gimvbpvw_vg'), dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/1'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/2'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/3'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/4'), dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/5')], signature=dbus.Signature('o')), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(True), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeCount': dbus.UInt64(1599), 'MdaFreeBytes': dbus.UInt64(519168), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Vg/3, {'com.redhat.lvmdbus1.Vg': {'Name': 'LVMTEST15146gimvbpvw_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array([], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(519168), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(1), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(0), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9594), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40240152576), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('omyOFL-1P5m-rhq5-i5YL-4Us5-EelL-hkf241')}, 'com.redhat.lvmdbus1.VgVdo': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._create_vg at 0x7fefac126b00>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/24 at 0x7fefabf9a620>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/24 at 0x7fefabf9a620>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/24, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/24 at 0x7fefabf9a620>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/24 at 0x7fefabf9a620>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/24 at 0x7fefabf9a620>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/24, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146gimvbpvw_vg'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146gimvbpvw_vg, result = /com/redhat/lvmdbus1/Vg/3
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = (/com/redhat/lvmdbus1/Vg/3)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Name': 'LVMTEST15146gimvbpvw_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array([], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(519168), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(1), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(0), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9594), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40240152576), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('omyOFL-1P5m-rhq5-i5YL-4Us5-EelL-hkf241')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/25, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._lv_create_linear at 0x7fefac09b1c0> with args ('omyOFL-1P5m-rhq5-i5YL-4Us5-EelL-hkf241', 'LVMTEST15146gimvbpvw_vg', dbus.String('yxuexvlc_lv'), dbus.UInt64(8388608), dbus.Boolean(False), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '1597')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/Lv/14', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(2), 'UsedBytes': dbus.UInt64(8388608), 'FreeBytes': dbus.UInt64(6698303488)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/3, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/14'], signature=dbus.Signature('o')), 'Seqno': dbus.UInt64(2), 'LvCount': dbus.UInt64(1), 'FreeCount': dbus.UInt64(9592), 'FreeBytes': dbus.UInt64(40231763968)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/14, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146gimvbpvw_vg/yxuexvlc_lv'), 'Name': dbus.String('yxuexvlc_lv'), 'Uuid': dbus.String('zBJUeO-gtkQ-NIpo-3Dmd-V3J0-tipt-xtvhQm')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._lv_create_linear at 0x7fefac09b1c0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/25 at 0x7fefabf9b190>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/25 at 0x7fefabf9b190>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/25, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/25 at 0x7fefabf9b190>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/25 at 0x7fefabf9b190>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94820>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/14')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/25 at 0x7fefabf9b190>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/14')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/25, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/14 at 0x7fefabf9af20>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/14 at 0x7fefabf9af20>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/14 at 0x7fefabf9af20>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/14 at 0x7fefabf9af20>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146gimvbpvw_vg/yxuexvlc_lv'), 'Name': dbus.String('yxuexvlc_lv'), 'Uuid': dbus.String('zBJUeO-gtkQ-NIpo-3Dmd-V3J0-tipt-xtvhQm')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146gimvbpvw_vg/yxuexvlc_lv'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146gimvbpvw_vg/yxuexvlc_lv, result = /com/redhat/lvmdbus1/Lv/14
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = (/com/redhat/lvmdbus1/Lv/14)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/26, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._lv_create_linear at 0x7fefac09b1c0> with args ('omyOFL-1P5m-rhq5-i5YL-4Us5-EelL-hkf241', 'LVMTEST15146gimvbpvw_vg', dbus.String('gxxsbgub_lv'), dbus.UInt64(8388608), dbus.Boolean(False), dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '1595')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/Lv/15', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/Lv/14', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(4), 'MdaFreeBytes': dbus.UInt64(518656), 'UsedBytes': dbus.UInt64(16777216), 'FreeBytes': dbus.UInt64(6689914880)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518656)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/3, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/Lv/14', '/com/redhat/lvmdbus1/Lv/15'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(518656), 'Seqno': dbus.UInt64(3), 'LvCount': dbus.UInt64(2), 'FreeCount': dbus.UInt64(9590), 'FreeBytes': dbus.UInt64(40223375360)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Lv/15, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146gimvbpvw_vg/gxxsbgub_lv'), 'Name': dbus.String('gxxsbgub_lv'), 'Uuid': dbus.String('Xz72hD-IxL0-E2NF-EPI5-QIL1-goPY-Kr0cFt')}, 'com.redhat.lvmdbus1.Lv': {}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._lv_create_linear at 0x7fefac09b1c0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/26 at 0x7fefabf99c90>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/26 at 0x7fefabf99c90>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/26, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/26 at 0x7fefabf99c90>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/26 at 0x7fefabf99c90>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/15')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/26 at 0x7fefabf99c90>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/15')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/26, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/15 at 0x7fefabf99690>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/15 at 0x7fefabf99690>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/15 at 0x7fefabf99690>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.Lv at /com/redhat/lvmdbus1/Lv/15 at 0x7fefabf99690>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'VolumeType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('a', 'active'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['public'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(True), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('-wi-a-----'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146gimvbpvw_vg/gxxsbgub_lv'), 'Name': dbus.String('gxxsbgub_lv'), 'Uuid': dbus.String('Xz72hD-IxL0-E2NF-EPI5-QIL1-goPY-Kr0cFt')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Manager._lookup_by_lvm_id at 0x7fefac126d40> with args (dbus.String('LVMTEST15146gimvbpvw_vg/gxxsbgub_lv'),) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - LookUpByLvmId: key = LVMTEST15146gimvbpvw_vg/gxxsbgub_lv, result = /com/redhat/lvmdbus1/Lv/15
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Manager._lookup_by_lvm_id at 0x7fefac126d40>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = (/com/redhat/lvmdbus1/Lv/15)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/27, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._create_pool at 0x7fefac09b640> with args ('omyOFL-1P5m-rhq5-i5YL-4Us5-EelL-hkf241', 'LVMTEST15146gimvbpvw_vg', dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/14'), dbus.ObjectPath('/com/redhat/lvmdbus1/Lv/15'), dbus.Dictionary({}, signature=dbus.Signature('sv')), <function vg_create_cache_pool at 0x7fefac04f1c0>) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/14, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Lv/15, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv'])
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '1593')], signature=dbus.Signature('(tt)')), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/15', [('4', '5', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/16', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/17', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'PeAllocCount': dbus.UInt64(6), 'MdaFreeBytes': dbus.UInt64(518144), 'UsedBytes': dbus.UInt64(25165824), 'FreeBytes': dbus.UInt64(6681526272)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'MdaFreeBytes': dbus.UInt64(518144)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Vg/3, com.redhat.lvmdbus1.Vg, {'Lvs': dbus.Array(['/com/redhat/lvmdbus1/CachePool/4', '/com/redhat/lvmdbus1/HiddenLv/17', '/com/redhat/lvmdbus1/HiddenLv/16', '/com/redhat/lvmdbus1/HiddenLv/15'], signature=dbus.Signature('o')), 'MdaFree': dbus.UInt64(518144), 'Seqno': dbus.UInt64(5), 'LvCount': dbus.UInt64(1), 'FreeCount': dbus.UInt64(9588), 'FreeBytes': dbus.UInt64(40214986752)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/16, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[gxxsbgub_lv_cdata]'), 'Uuid': dbus.String('Xz72hD-IxL0-E2NF-EPI5-QIL1-goPY-Kr0cFt')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/17, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[gxxsbgub_lv_cmeta]'), 'Uuid': dbus.String('zBJUeO-gtkQ-NIpo-3Dmd-V3J0-tipt-xtvhQm')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/HiddenLv/15, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('3rUQsH-CstO-flMI-9alA-PavW-kEzo-9W5Zxn')}})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/CachePool/4, {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/17'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/16')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146gimvbpvw_vg/gxxsbgub_lv'), 'Name': dbus.String('gxxsbgub_lv'), 'Uuid': dbus.String('CcD7gg-p1U7-tt73-Kqkz-MCYe-4O99-hTyXus')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/16'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/17')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._create_pool at 0x7fefac09b640>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/27 at 0x7fefabf99720>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/27 at 0x7fefabf99720>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/27, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/27 at 0x7fefabf99720>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/27 at 0x7fefabf99720>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94af0>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/CachePool/4')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/27 at 0x7fefabf99720>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/com/redhat/lvmdbus1/CachePool/4')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/27, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/4 at 0x7fefabf98b20>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/4 at 0x7fefabf98b20>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/4 at 0x7fefabf98b20>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/4 at 0x7fefabf98b20>, dbus.String('com.redhat.lvmdbus1.CachePool')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/16'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/17')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/4 at 0x7fefabf98b20>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/17'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/16')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146gimvbpvw_vg/gxxsbgub_lv'), 'Name': dbus.String('gxxsbgub_lv'), 'Uuid': dbus.String('CcD7gg-p1U7-tt73-Kqkz-MCYe-4O99-hTyXus')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '1593')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/15', [('4', '5', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/16', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/17', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(6), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(25165824), 'FreeBytes': dbus.UInt64(6681526272), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')}}, '/com/redhat/lvmdbus1/Pv/1': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')}}, '/com/redhat/lvmdbus1/Pv/2': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')}}, '/com/redhat/lvmdbus1/Pv/3': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')}}, '/com/redhat/lvmdbus1/Pv/4': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')}}, '/com/redhat/lvmdbus1/Pv/5': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')}}, '/com/redhat/lvmdbus1/CachePool/4': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/17'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/16')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146gimvbpvw_vg/gxxsbgub_lv'), 'Name': dbus.String('gxxsbgub_lv'), 'Uuid': dbus.String('CcD7gg-p1U7-tt73-Kqkz-MCYe-4O99-hTyXus')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachePool': {'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/16'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/17')}}, '/com/redhat/lvmdbus1/HiddenLv/17': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[gxxsbgub_lv_cmeta]'), 'Uuid': dbus.String('zBJUeO-gtkQ-NIpo-3Dmd-V3J0-tipt-xtvhQm')}}, '/com/redhat/lvmdbus1/HiddenLv/16': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[gxxsbgub_lv_cdata]'), 'Uuid': dbus.String('Xz72hD-IxL0-E2NF-EPI5-QIL1-goPY-Kr0cFt')}, 'com.redhat.lvmdbus1.Lv': {}, 'com.redhat.lvmdbus1.CachedLv': {'CachePool': dbus.ObjectPath('/')}}, '/com/redhat/lvmdbus1/HiddenLv/15': {'com.redhat.lvmdbus1.LvCommon': {'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('3rUQsH-CstO-flMI-9alA-PavW-kEzo-9W5Zxn')}}, '/com/redhat/lvmdbus1/Vg/3': {'com.redhat.lvmdbus1.Vg': {'Name': 'LVMTEST15146gimvbpvw_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/CachePool/4', '/com/redhat/lvmdbus1/HiddenLv/17', '/com/redhat/lvmdbus1/HiddenLv/16', '/com/redhat/lvmdbus1/HiddenLv/15'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(518144), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(5), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9588), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40214986752), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('omyOFL-1P5m-rhq5-i5YL-4Us5-EelL-hkf241')}, 'com.redhat.lvmdbus1.VgVdo': {}}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('com.redhat.lvmdbus1.Manager')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Version': dbus.String('1.1.0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '1593')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/15', [('4', '5', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/16', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/17', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(6), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(25165824), 'FreeBytes': dbus.UInt64(6681526272), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '1599')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6706692096), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/4 at 0x7fefabf98b20>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/4 at 0x7fefabf98b20>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/4 at 0x7fefabf98b20>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/4 at 0x7fefabf98b20>, dbus.String('com.redhat.lvmdbus1.CachePool')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'DataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/16'), 'MetaDataLv': dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/17')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCachePool at /com/redhat/lvmdbus1/CachePool/4 at 0x7fefabf98b20>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': dbus.Array(['private'], signature=dbus.Signature('s')), 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(8388608), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi---C---'), 'HiddenLvs': dbus.Array([dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/17'), dbus.ObjectPath('/com/redhat/lvmdbus1/HiddenLv/16')], signature=dbus.Signature('o')), 'Devices': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('cache-pool')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String('/dev/LVMTEST15146gimvbpvw_vg/gxxsbgub_lv'), 'Name': dbus.String('gxxsbgub_lv'), 'Uuid': dbus.String('CcD7gg-p1U7-tt73-Kqkz-MCYe-4O99-hTyXus')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/17 at 0x7fefabf9bdc0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/17 at 0x7fefabf9bdc0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/17 at 0x7fefabf9bdc0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'metadata'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(0), dbus.UInt64(1), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[gxxsbgub_lv_cmeta]'), 'Uuid': dbus.String('zBJUeO-gtkQ-NIpo-3Dmd-V3J0-tipt-xtvhQm')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/16 at 0x7fefabf9a8c0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/16 at 0x7fefabf9a8c0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/16 at 0x7fefabf9a8c0>, dbus.String('com.redhat.lvmdbus1.Lv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/16 at 0x7fefabf9a8c0>, dbus.String('com.redhat.lvmdbus1.CachedLv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'CachePool': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCacheLv at /com/redhat/lvmdbus1/HiddenLv/16 at 0x7fefabf9a8c0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({'VolumeType': dbus.Struct(('C', 'Cache'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'cache', 'pool', 'data'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('Cwi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(2), dbus.UInt64(3), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[gxxsbgub_lv_cdata]'), 'Uuid': dbus.String('Xz72hD-IxL0-E2NF-EPI5-QIL1-goPY-Kr0cFt')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/15 at 0x7fefabf986d0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/15 at 0x7fefabf986d0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.lv.LvCommon at /com/redhat/lvmdbus1/HiddenLv/15 at 0x7fefabf986d0>, dbus.String('com.redhat.lvmdbus1.LvCommon')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'VolumeType': dbus.Struct(('e', 'raid or pool metadata or pool metadata spare'), signature=dbus.Signature('(ss)')), 'Permissions': dbus.Struct(('w', 'writable'), signature=dbus.Signature('(ss)')), 'AllocationPolicy': dbus.Struct(('i', 'inherited'), signature=dbus.Signature('(ss)')), 'FixedMinor': dbus.Boolean(False), 'State': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'TargetType': dbus.Struct(('-', 'Unspecified'), signature=dbus.Signature('(ss)')), 'ZeroBlocks': dbus.Boolean(False), 'Health': dbus.Struct(('-', 'unspecified'), signature=dbus.Signature('(ss)')), 'SkipActivation': dbus.Boolean(False), 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Roles': ['private', 'pool', 'spare'], 'IsThinVolume': dbus.Boolean(False), 'IsThinPool': dbus.Boolean(False), 'Active': dbus.Boolean(False), 'MovePv': dbus.ObjectPath('/'), 'MetaDataSizeBytes': dbus.UInt64(0), 'SyncPercent': dbus.UInt32(0), 'CopyPercent': dbus.UInt32(0), 'MetaDataPercent': dbus.UInt32(0), 'SnapPercent': dbus.UInt32(0), 'DataPercent': dbus.UInt32(0), 'Attr': dbus.String('ewi-------'), 'HiddenLvs': dbus.Array([], signature=dbus.Signature('o')), 'Devices': dbus.Array([(dbus.ObjectPath('/com/redhat/lvmdbus1/Pv/0'), [(dbus.UInt64(4), dbus.UInt64(5), dbus.String('linear'))])], signature=dbus.Signature('(oa(tts))')), 'PoolLv': dbus.ObjectPath('/'), 'OriginLv': dbus.ObjectPath('/'), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'SegType': dbus.Array([dbus.String('linear')], signature=dbus.Signature('s')), 'SizeBytes': dbus.UInt64(8388608), 'Path': dbus.String(''), 'Name': dbus.String('[lvol0_pmspare]'), 'Uuid': dbus.String('3rUQsH-CstO-flMI-9alA-PavW-kEzo-9W5Zxn')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Name': 'LVMTEST15146gimvbpvw_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/CachePool/4', '/com/redhat/lvmdbus1/HiddenLv/17', '/com/redhat/lvmdbus1/HiddenLv/16', '/com/redhat/lvmdbus1/HiddenLv/15'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(518144), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(5), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9588), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40214986752), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('omyOFL-1P5m-rhq5-i5YL-4Us5-EelL-hkf241')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '2'), ('2', '2'), ('4', '2'), ('6', '1593')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(True), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([('/com/redhat/lvmdbus1/HiddenLv/15', [('4', '5', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/16', [('2', '3', 'linear')]), ('/com/redhat/lvmdbus1/HiddenLv/17', [('0', '1', 'linear')])], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/com/redhat/lvmdbus1/Vg/3'), 'PeAllocCount': dbus.UInt64(6), 'PeCount': dbus.UInt64(1599), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(518144), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(25165824), 'FreeBytes': dbus.UInt64(6681526272), 'SizeBytes': dbus.UInt64(6706692096), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Name': 'LVMTEST15146gimvbpvw_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/CachePool/4', '/com/redhat/lvmdbus1/HiddenLv/17', '/com/redhat/lvmdbus1/HiddenLv/16', '/com/redhat/lvmdbus1/HiddenLv/15'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(518144), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(5), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9588), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40214986752), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('omyOFL-1P5m-rhq5-i5YL-4Us5-EelL-hkf241')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('com.redhat.lvmdbus1.Vg')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Name': 'LVMTEST15146gimvbpvw_vg', 'Tags': dbus.Array([], signature=dbus.Signature('s')), 'Pvs': dbus.Array(['/com/redhat/lvmdbus1/Pv/0', '/com/redhat/lvmdbus1/Pv/1', '/com/redhat/lvmdbus1/Pv/2', '/com/redhat/lvmdbus1/Pv/3', '/com/redhat/lvmdbus1/Pv/4', '/com/redhat/lvmdbus1/Pv/5'], signature=dbus.Signature('o')), 'Lvs': dbus.Array(['/com/redhat/lvmdbus1/CachePool/4', '/com/redhat/lvmdbus1/HiddenLv/17', '/com/redhat/lvmdbus1/HiddenLv/16', '/com/redhat/lvmdbus1/HiddenLv/15'], signature=dbus.Signature('o')), 'Writeable': dbus.Boolean(True), 'Readable': dbus.Boolean(False), 'Resizeable': dbus.Boolean(True), 'Exportable': dbus.Boolean(False), 'Partial': dbus.Boolean(False), 'AllocContiguous': dbus.Boolean(False), 'AllocCling': dbus.Boolean(False), 'AllocNormal': dbus.Boolean(True), 'AllocAnywhere': dbus.Boolean(False), 'Clustered': dbus.Boolean(False), 'MdaUsedCount': dbus.UInt64(6), 'MdaSizeBytes': dbus.UInt64(1044480), 'MdaFree': dbus.UInt64(518144), 'MdaCount': dbus.UInt64(6), 'Seqno': dbus.UInt64(5), 'SnapCount': dbus.UInt64(0), 'LvCount': dbus.UInt64(1), 'PvCount': dbus.UInt64(6), 'MaxPv': dbus.UInt64(0), 'MaxLv': dbus.UInt64(0), 'Profile': dbus.String(''), 'FreeCount': dbus.UInt64(9588), 'ExtentCount': dbus.UInt64(9594), 'ExtentSizeBytes': dbus.UInt64(4194304), 'SysId': dbus.String(''), 'FreeBytes': dbus.UInt64(40214986752), 'SizeBytes': dbus.UInt64(40240152576), 'Fmt': dbus.String('lvm2'), 'Uuid': dbus.String('omyOFL-1P5m-rhq5-i5YL-4Us5-EelL-hkf241')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.vg.VgVdo at /com/redhat/lvmdbus1/Vg/3 at 0x7fefabf9ad70>, dbus.String('com.redhat.lvmdbus1.VgVdo')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesAdded(/com/redhat/lvmdbus1/Job/28, {'com.redhat.lvmdbus1.Job': {'Percent': dbus.Double(1.0), 'Complete': dbus.Boolean(False), 'GetError': dbus.Struct((-1, 'Job is not complete!'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function Vg._remove at 0x7fefac09ab90> with args ('omyOFL-1P5m-rhq5-i5YL-4Us5-EelL-hkf241', 'LVMTEST15146gimvbpvw_vg', dbus.Dictionary({}, signature=dbus.Signature('sv'))) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh entry
| [ 1:55] ## LVMDBUSD: 15323:15330 - lvmdb - refresh exit
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/0, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/1, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/2, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/3, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/4, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Pv/5, com.redhat.lvmdbus1.Pv, {'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Allocatable': dbus.Boolean(False), 'Vg': dbus.ObjectPath('/'), 'PeCount': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/15, ['com.redhat.lvmdbus1.LvCommon'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/16, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachedLv'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/HiddenLv/17, ['com.redhat.lvmdbus1.LvCommon'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/CachePool/4, ['com.redhat.lvmdbus1.LvCommon', 'com.redhat.lvmdbus1.Lv', 'com.redhat.lvmdbus1.CachePool'])
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Vg/3, ['com.redhat.lvmdbus1.Vg', 'com.redhat.lvmdbus1.VgVdo'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function Vg._remove at 0x7fefac09ab90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Job._signal_complete at 0x7fefac086170>, parameters = (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/28 at 0x7fefabf9afe0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/28 at 0x7fefabf9afe0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>)
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: PropertiesChanged(/com/redhat/lvmdbus1/Job/28, com.redhat.lvmdbus1.Job, {'Complete': dbus.Boolean(True)}, [])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94c10>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/28 at 0x7fefabf9afe0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/28 at 0x7fefabf9afe0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94940>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.job.Job at /com/redhat/lvmdbus1/Job/28 at 0x7fefabf9afe0>, dbus.String('com.redhat.lvmdbus1.Job')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Percent': dbus.Double(100.0), 'Complete': dbus.Boolean(True), 'GetError': dbus.Struct((0, 'None'), signature=dbus.Signature('(is)')), 'Result': dbus.ObjectPath('/')})
| [ 1:55] ## LVMDBUSD: 15323:15323 - SIGNAL: InterfacesRemoved(/com/redhat/lvmdbus1/Job/28, ['com.redhat.lvmdbus1.Job'])
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')}}, '/com/redhat/lvmdbus1/Pv/1': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')}}, '/com/redhat/lvmdbus1/Pv/2': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')}}, '/com/redhat/lvmdbus1/Pv/3': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')}}, '/com/redhat/lvmdbus1/Pv/4': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')}}, '/com/redhat/lvmdbus1/Pv/5': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')}}})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.manager.Manager at /com/redhat/lvmdbus1/Manager at 0x7fefac13a110>, dbus.String('com.redhat.lvmdbus1.Manager')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Version': dbus.String('1.1.0')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/0 at 0x7fefabf98a30>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv1'), 'Uuid': dbus.String('d0zJCM-3v2X-cTqC-dwFs-k3Bo-QTdB-aU2YHG')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/1 at 0x7fefabf98b80>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv2'), 'Uuid': dbus.String('W3nUDo-cjSG-MpBf-maYo-y9WX-oMUS-4X9Ld5')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/2 at 0x7fefabf98be0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv3'), 'Uuid': dbus.String('YxIQl6-A0Zd-KHRr-yh27-Xgjp-Lvdi-Zzh3n8')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/3 at 0x7fefabf98c40>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv4'), 'Uuid': dbus.String('LDBVN0-h0nF-wvB4-qxiK-PJR0-BoNy-oXPSgW')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/4 at 0x7fefabf98ca0>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv5'), 'Uuid': dbus.String('7jY6Gp-fqDl-E3JI-b30y-Yf3T-VPFo-II9hTd')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Introspectable')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94b80>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('org.freedesktop.DBus.Properties')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94a60>, parameters = ({})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90> with args (<lvmdbusd.pv.Pv at /com/redhat/lvmdbus1/Pv/5 at 0x7fefabf98d00>, dbus.String('com.redhat.lvmdbus1.Pv')) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function AutomatedProperties._get_all_prop at 0x7fefac88eb90>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf94790>, parameters = ({'Tags': dbus.Array([], signature=dbus.Signature('s')), 'PeSegments': dbus.Array([('0', '0')], signature=dbus.Signature('(tt)')), 'Exportable': dbus.Boolean(False), 'Allocatable': dbus.Boolean(False), 'Missing': dbus.Boolean(False), 'Lv': dbus.Array([], signature=dbus.Signature('(oa(tts))')), 'Vg': dbus.ObjectPath('/'), 'PeAllocCount': dbus.UInt64(0), 'PeCount': dbus.UInt64(0), 'PeStart': dbus.UInt64(1048576), 'BaSizeBytes': dbus.UInt64(0), 'BaStart': dbus.UInt64(0), 'MdaFreeBytes': dbus.UInt64(521216), 'MdaSizeBytes': dbus.UInt64(1044480), 'DevSizeBytes': dbus.UInt64(6710886400), 'UsedBytes': dbus.UInt64(0), 'FreeBytes': dbus.UInt64(6710886400), 'SizeBytes': dbus.UInt64(6710886400), 'Fmt': dbus.String('lvm2'), 'Name': dbus.String('/dev/mapper/LVMTEST15146pv6'), 'Uuid': dbus.String('464sY9-ajQX-WkfT-Roqd-ebV4-Vluz-mHWxqp')})
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method start: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0> with args (<lvmdbusd.main.Lvm at /com/redhat/lvmdbus1 at 0x7fefac13a170>,) (callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>)
| [ 1:55] ## LVMDBUSD: 15323:15329 - Method complete: <function ObjectManager._get_managed_objects at 0x7fefac88f0a0>
| [ 1:55] ## LVMDBUSD: 15323:15323 - Main thread execution, callback = <function Object._message_cb.<locals>.<lambda> at 0x7fefabf949d0>, parameters = ({'/com/redhat/lvmdbus1/Manager': {'com.redhat.lvmdbus1.Manager': {'Version': dbus.String('1.1.0')}}, '/com/redhat/lvmdbus1/Pv/0': {'com.redhat.lvmdbus1.Pv': {'Tags': dbus.Array([], signature=d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment