summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolay Shestakov <[email protected]>2026-06-24 13:25:49 +0500
committerGitHub <[email protected]>2026-06-24 11:25:49 +0300
commitd48dff692fc24a1ea2e487f3eb517f01bab9bea9 (patch)
tree9dbbe4082260e2700a576aee778cdde0ae66b448
parent28ea4689dccae90d5c4f39cbabaf13b64670b313 (diff)
Limit retries of data uploading (#44307)
-rw-r--r--ydb/core/transfer/uploader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/transfer/uploader.h b/ydb/core/transfer/uploader.h
index 9064c2c6b42..930f18a0340 100644
--- a/ydb/core/transfer/uploader.h
+++ b/ydb/core/transfer/uploader.h
@@ -11,7 +11,7 @@
namespace NKikimr::NReplication::NTransfer {
inline TBackoff MakeBackoff() {
- return TBackoff(TDuration::Seconds(1), TDuration::Minutes(1));
+ return TBackoff(7, TDuration::Seconds(1), TDuration::Minutes(1));
}
template<typename TData>