aboutsummaryrefslogtreecommitdiffstats
path: root/mpm
diff options
context:
space:
mode:
Diffstat (limited to 'mpm')
-rw-r--r--mpm/python/usrp_mpm/rpc_server.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/mpm/python/usrp_mpm/rpc_server.py b/mpm/python/usrp_mpm/rpc_server.py
index 306d74309..29ad3daa8 100644
--- a/mpm/python/usrp_mpm/rpc_server.py
+++ b/mpm/python/usrp_mpm/rpc_server.py
@@ -436,7 +436,6 @@ class MPMServer(RPCServer):
)
self._last_error = "init() called without valid claim."
raise RuntimeError("init() called without valid claim.")
- self._disable_timeouts = True # Stop the timer, inits can take some time.
try:
result = self.periph_manager.init(args)
except Exception as ex:
@@ -444,7 +443,6 @@ class MPMServer(RPCServer):
self.log.error("init() failed with error: %s", str(ex))
finally:
self.log.debug("init() result: {}".format(result))
- self._disable_timeouts = False
return result
###########################################################################