aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python/usrp_mpm/rpc_server.py
diff options
context:
space:
mode:
authorBrent Stapleton <brent.stapleton@ettus.com>2018-02-02 11:28:52 -0800
committerMartin Braun <martin.braun@ettus.com>2018-02-19 16:58:52 -0800
commit94aedfd2d93f566e229dd001fb8229ed27e1224a (patch)
tree817c60885dbd99882683b2ab47ed4c07f04dc67c /mpm/python/usrp_mpm/rpc_server.py
parent6ffe0cc5c8015ce581c9d689c07abb0de294f30e (diff)
downloaduhd-94aedfd2d93f566e229dd001fb8229ed27e1224a.tar.gz
uhd-94aedfd2d93f566e229dd001fb8229ed27e1224a.tar.bz2
uhd-94aedfd2d93f566e229dd001fb8229ed27e1224a.zip
mpm: adding get_component_info
Add getter function for updateable component information. This is a minor compat number bump.
Diffstat (limited to 'mpm/python/usrp_mpm/rpc_server.py')
-rw-r--r--mpm/python/usrp_mpm/rpc_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpm/python/usrp_mpm/rpc_server.py b/mpm/python/usrp_mpm/rpc_server.py
index 00175d312..4f8058f2f 100644
--- a/mpm/python/usrp_mpm/rpc_server.py
+++ b/mpm/python/usrp_mpm/rpc_server.py
@@ -31,7 +31,7 @@ from usrp_mpm.sys_utils import net
TIMEOUT_INTERVAL = 3.0 # Seconds before claim expires (default value)
TOKEN_LEN = 16 # Length of the token string
# Compatibility number for MPM
-MPM_COMPAT_NUM = (1, 1)
+MPM_COMPAT_NUM = (1, 2)
def no_claim(func):
" Decorator for functions that require no token check "