longer timeout for mode service
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit

This commit is contained in:
Cleanroom Laptop L590
2022-03-25 18:39:21 +01:00
parent c8c2e543a1
commit 0ff84b31ef
4 changed files with 10 additions and 9 deletions

View File

@ -5,8 +5,9 @@
namespace config {
static constexpr uint32_t PL_PCDU_TRANSITION_TIMEOUT_MS = 20 * 60 * 60 * 1000;
static constexpr uint32_t LONGEST_MODE_TIMEOUT =
static constexpr uint32_t PL_PCDU_TRANSITION_TIMEOUT_MS = 20 * 60 * 1000;
static constexpr uint32_t LONGEST_MODE_TIMEOUT_SECONDS = PL_PCDU_TRANSITION_TIMEOUT_MS / 1000;
}