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-bic-eid7 retryInterval=1
19 echo "Retry $retries/$maxRetries: Command failed. Retrying in $retryInterval seconds..."
20 sleep $retryInterval
H A Dsetup-local-eid7 retryInterval=1
19 echo "Retry $retries/$maxRetries: Command failed. Retrying in $retryInterval seconds..."
20 sleep $retryInterval
/openbmc/bmcweb/redfish-core/lib/
H A Devent_service.hpp131 std::optional<uint32_t> retryInterval; in requestRoutesEventService() local
135 "DeliveryRetryIntervalSeconds", retryInterval, // in requestRoutesEventService()
166 if (retryInterval) in requestRoutesEventService()
169 if ((*retryInterval < 5) || (*retryInterval > 180)) in requestRoutesEventService()
172 asyncResp->res, std::to_string(*retryInterval), in requestRoutesEventService()
178 *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()