fix: Introduce retry for transient errors from DB (#3167)

This commit is contained in:
Alex Kremer
2026-08-10 14:39:15 +01:00
committed by GitHub
parent f490117cfb
commit dbdbe4ea1f
27 changed files with 665 additions and 88 deletions

View File

@@ -75,7 +75,7 @@ private:
util::StopHelper stopHelper_;
static constexpr std::chrono::seconds kWsTimeout{30};
static constexpr std::chrono::seconds kRetryMaxDelay{30};
static constexpr std::chrono::seconds kMaxRetryDelay{30};
static constexpr std::chrono::seconds kRetryDelay{1};
public: