diff options
author | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2016-06-29 23:20:24 -0400 |
---|---|---|
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2016-07-10 22:34:50 -0400 |
commit | f0f3efe1bab463e50ab51d0cb12b3696bafc76b9 (patch) | |
tree | b5a2c4758b9b205068300aec9520778e37557f25 /pyipmitest | |
parent | 70852a3850a2c6947d9c1004675213d5a262592c (diff) | |
download | talos-skeleton-f0f3efe1bab463e50ab51d0cb12b3696bafc76b9.tar.gz talos-skeleton-f0f3efe1bab463e50ab51d0cb12b3696bafc76b9.zip |
Export objects prior to bus name grab
The default behavior in pyphosphor changed such that ObjectManager
and Properties signals are not emitted by default. Enable signals
just prior to bus name grab.
Change-Id: I27a2de4b60482dd843702396f33c7cdccaf17277
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'pyipmitest')
-rw-r--r-- | pyipmitest/ipmi_debug.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyipmitest/ipmi_debug.py b/pyipmitest/ipmi_debug.py index 3e0ea18..b898318 100644 --- a/pyipmitest/ipmi_debug.py +++ b/pyipmitest/ipmi_debug.py @@ -89,6 +89,8 @@ def main(): obj = IpmiDebug(bus, OBJ_NAME) mainloop = gobject.MainLoop() r = ConsoleReader(obj) + + obj.unmask_signals() name = dbus.service.BusName(DBUS_NAME, bus) print ("Enter IPMI packet as hex values. First three bytes will be used" |