From 5627af6b21ae672f97b64ec58683c4ebec930aa4 Mon Sep 17 00:00:00 2001 From: Jiaming Yuan Date: Tue, 28 May 2024 10:20:49 +0800 Subject: [PATCH] [coll] Increase timeout limit. (#10332) --- src/collective/comm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/collective/comm.h b/src/collective/comm.h index 0a0f24aad..72fec2e81 100644 --- a/src/collective/comm.h +++ b/src/collective/comm.h @@ -20,7 +20,7 @@ namespace xgboost::collective { -inline constexpr std::int64_t DefaultTimeoutSec() { return 300; } // 5min +inline constexpr std::int64_t DefaultTimeoutSec() { return 60 * 30; } // 30min inline constexpr std::int32_t DefaultRetry() { return 3; } // indexing into the ring