Home
last modified time | relevance | path

Searched refs:retryInterval (Results 1 – 6 of 6) sorted by relevance

/openbmc/openbmc/meta-facebook/meta-harma/recipes-networking/mctp/files/
H A Dsetup-local-eid6 retryInterval=1
20 echo "Retry $retries/$maxRetries: Command failed. Retrying in $retryInterval seconds..."
21 sleep $retryInterval
H A Dcheck-eid14 local retryInterval=${3:-1}
27 sleep "$retryInterval"
/openbmc/bmcweb/redfish-core/lib/
H A Devent_service.hpp127 std::optional<uint32_t> retryInterval; in requestRoutesEventService() local
131 "DeliveryRetryIntervalSeconds", retryInterval, // in requestRoutesEventService()
162 if (retryInterval) in requestRoutesEventService()
165 if ((*retryInterval < 5) || (*retryInterval > 180)) in requestRoutesEventService()
168 asyncResp->res, std::to_string(*retryInterval), in requestRoutesEventService()
174 *retryInterval; in requestRoutesEventService()
/openbmc/phosphor-net-ipmid/sol/
H A Dsol_manager.cpp171 retryInterval = std::get<uint8_t>(properties["RetryIntervalMS"]) * in updateSOLParameter()
336 sol::Manager::get().retryInterval = in procSolConfChange()
H A Dsol_manager.hpp177 std::chrono::milliseconds retryInterval = 100ms; member in sol::Manager
H A Dsol_context.cpp85 std::chrono::microseconds interval = sol::Manager::get().retryInterval; in enableRetryTimer()