From acd1f6d91e7cb0c2d3dd76581ec8ee4b7acd9a4b Mon Sep 17 00:00:00 2001 From: Brent Stapleton Date: Wed, 3 Jan 2018 10:43:19 -0800 Subject: mpm: Increase RPC timeout during update_component Increases the host's timeout during update_component times, then resets it to the default RPC timeout after the call is complete. Reviewed-by: Martin Braun --- host/lib/usrp/mpmd/mpmd_impl.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'host/lib/usrp/mpmd/mpmd_impl.cpp') diff --git a/host/lib/usrp/mpmd/mpmd_impl.cpp b/host/lib/usrp/mpmd/mpmd_impl.cpp index ff1e0498d..3afa6dfc1 100644 --- a/host/lib/usrp/mpmd/mpmd_impl.cpp +++ b/host/lib/usrp/mpmd/mpmd_impl.cpp @@ -43,6 +43,8 @@ namespace { const double MPMD_CHDR_MAX_RTT = 0.02; //! MPM Compatibility number const std::vector MPM_COMPAT_NUM = {1, 0}; + //! Timeout value for the update_component RPC call (ms) + const size_t MPMD_UPDATE_COMPONENT_TIMEOUT = 10000; /************************************************************************* * Helper functions @@ -75,7 +77,9 @@ namespace { } // Now call update component + mb->rpc->set_timeout(MPMD_UPDATE_COMPONENT_TIMEOUT); mb->rpc->notify_with_token("update_component", all_metadata, all_data); + mb->set_timeout_default(); return all_comps_copy; } -- cgit v1.2.3