diff --git a/crates/rbv-cli/src/commands/cluster.rs b/crates/rbv-cli/src/commands/cluster.rs index d040dae..828650d 100644 --- a/crates/rbv-cli/src/commands/cluster.rs +++ b/crates/rbv-cli/src/commands/cluster.rs @@ -4,7 +4,7 @@ use rbv_cluster::{cluster_faces, ClusterConfig}; use crate::args::ClusterArgs; pub async fn run(args: ClusterArgs) -> Result<()> { - let pool = rbv_data::connect(&args.database, args.concurrency as u32 + 2).await?; + let pool = rbv_data::connect(&args.database, 2).await?; info!("Loading unassigned face embeddings..."); let faces = rbv_data::face::unassigned_face_embeddings(&pool).await?;