aboutsummaryrefslogtreecommitdiffstats
path: root/mpm
diff options
context:
space:
mode:
authorJoerg Hofrichter <joerg.hofrichter@ni.com>2020-12-04 11:28:22 +0100
committermichael-west <michael.west@ettus.com>2020-12-04 12:08:13 -0800
commiteaf006225425e146657a09c7360aca1f9615886d (patch)
treeff5b978b4e985122a66159360fced187f75a446d /mpm
parentf96ffb221876a8e3615d1da4e38b4706456ddcc2 (diff)
downloaduhd-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.py3
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