From 8a53e27f8ca2031cb6552a00ae519e8b4ddaf675 Mon Sep 17 00:00:00 2001 From: Jiaming Yuan Date: Mon, 27 May 2024 18:58:40 +0800 Subject: [PATCH] Increase timeout limit. --- 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 0a0f24aadd3d..72fec2e816e9 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