Skip to content

Commit

Permalink
Increase process semaphore limit
Browse files Browse the repository at this point in the history
  • Loading branch information
xSke committed Feb 15, 2024
1 parent cc914c8 commit 4bad592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/migrate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use time::Instant;
use tokio::sync::Semaphore;
use tracing::{error, info, instrument, warn};

static PROCESS_SEMAPHORE: Semaphore = Semaphore::const_new(1);
static PROCESS_SEMAPHORE: Semaphore = Semaphore::const_new(10);

pub async fn handle_item_inner(
state: &AppState,
Expand Down

0 comments on commit 4bad592

Please sign in to comment.