diff options
author | Joerg Hofrichter <joerg.hofrichter@ni.com> | 2020-12-04 11:28:22 +0100 |
---|---|---|
committer | michael-west <michael.west@ettus.com> | 2020-12-04 12:08:13 -0800 |
commit | eaf006225425e146657a09c7360aca1f9615886d (patch) | |
tree | ff5b978b4e985122a66159360fced187f75a446d /mpm | |
parent | f96ffb221876a8e3615d1da4e38b4706456ddcc2 (diff) | |
download | uhd-eaf006225425e146657a09c7360aca1f9615886d.tar.gz uhd-eaf006225425e146657a09c7360aca1f9615886d.tar.bz2 uhd-eaf006225425e146657a09c7360aca1f9615886d.zip |
mpm: rpc_server: fix get_log_buf for MPM Shell
Fix the issue that the method 'get_log_buf' was not accessible from
MPM Shell.
Diffstat (limited to 'mpm')
-rw-r--r-- | mpm/python/usrp_mpm/rpc_server.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mpm/python/usrp_mpm/rpc_server.py b/mpm/python/usrp_mpm/rpc_server.py index 5d55c07e4..4e424c780 100644 --- a/mpm/python/usrp_mpm/rpc_server.py +++ b/mpm/python/usrp_mpm/rpc_server.py @@ -53,7 +53,8 @@ class MPMServer(RPCServer): RPC calls to appropiate calls in the periph_manager and dboard_managers. """ # This is a list of methods in this class which require a claim - default_claimed_methods = ['init', 'update_component', 'reclaim', 'unclaim'] + default_claimed_methods = ['init', 'update_component', 'reclaim', 'unclaim', + 'get_log_buf'] ########################################################################### # RPC Server Initialization |