Skip to content

Commit

Permalink
increase replay timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
lanvidr committed Jan 27, 2024
1 parent 58af069 commit 7605925
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/sui-replay/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ use tracing::{error, warn};
use crate::config::ReplayableNetworkConfigSet;

// TODO: make these configurable
pub(crate) const RPC_TIMEOUT_ERR_SLEEP_RETRY_PERIOD: Duration = Duration::from_millis(10_000);
pub(crate) const RPC_TIMEOUT_ERR_NUM_RETRIES: u32 = 2;
pub(crate) const RPC_TIMEOUT_ERR_SLEEP_RETRY_PERIOD: Duration = Duration::from_millis(100_000);
pub(crate) const RPC_TIMEOUT_ERR_NUM_RETRIES: u32 = 3;
pub(crate) const MAX_CONCURRENT_REQUESTS: usize = 1_000;

// Struct tag used in system epoch change events
Expand Down

0 comments on commit 7605925

Please sign in to comment.