chore(stages): raise transaction based commit thresholds (#3128)

This commit is contained in:
Roman Krasiuk
2023-06-14 01:38:56 +03:00
committed by GitHub
parent 39c6b22829
commit 3637482f3a
3 changed files with 3 additions and 3 deletions

View File

@ -184,7 +184,7 @@ pub struct SenderRecoveryConfig {
impl Default for SenderRecoveryConfig {
fn default() -> Self {
Self { commit_threshold: 50_000 }
Self { commit_threshold: 5_000_000 }
}
}

View File

@ -38,7 +38,7 @@ impl SenderRecoveryStage {
impl Default for SenderRecoveryStage {
fn default() -> Self {
Self { commit_threshold: 50_000 }
Self { commit_threshold: 5_000_000 }
}
}

View File

@ -30,7 +30,7 @@ pub struct TransactionLookupStage {
impl Default for TransactionLookupStage {
fn default() -> Self {
Self { commit_threshold: 100_000 }
Self { commit_threshold: 5_000_000 }
}
}