Skip to content

Commit

Permalink
plugin: Reduce simulation trials (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aursen authored Oct 9, 2024
1 parent e41712c commit da0fccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/src/executors/state/executable_threads.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use tokio::sync::RwLock;
use crate::{executors::tx::ExecutableThreadMetadata, pool_position::PoolPosition};

/// Number of times to retry a thread simulation.
static MAX_THREAD_SIMULATION_FAILURES: u32 = 10;
static MAX_THREAD_SIMULATION_FAILURES: u32 = 5;

/// Number of slots to wait before trying to execute a thread while not in the pool.
static THREAD_TIMEOUT_WINDOW: u64 = 24;
Expand Down

0 comments on commit da0fccd

Please sign in to comment.