Skip to content

Commit b492fde

Browse files
authored
increase retry delay for tier config fetching (#22168)
1 parent 0ca3d12 commit b492fde

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ydb/core/tx/tiering/manager.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@ class TTiersManager::TActor: public TActorBootstrapped<TTiersManager::TActor> {
119119
, RetryPolicy(IRetryPolicy::GetExponentialBackoffPolicy(
120120
[]() {
121121
return ERetryErrorClass::ShortRetry;
122-
},
123-
TDuration::MilliSeconds(10), TDuration::MilliSeconds(200), TDuration::Seconds(30), 10))
124-
, SecretsFetcher(std::make_shared<NMetadata::NSecret::TSnapshotsFetcher>()) {
122+
}, TDuration::MilliSeconds(10), TDuration::MilliSeconds(200), TDuration::Seconds(30), 10000))
123+
, SecretsFetcher(std::make_shared<NMetadata::NSecret::TSnapshotsFetcher>())
124+
{
125125
}
126126

127127
void Bootstrap() {

0 commit comments

Comments
 (0)