Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
harana-bot committed Mar 1, 2024
1 parent 1e0f353 commit 9f15564
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use harana_application::manager::ApplicationManager;
use harana_common::{serde_json, tauri};
use harana_common::hashbrown::HashMap;
use harana_common::log::info;
use harana_common::num_cpus;
use harana_common::thread_pools::build_default_pools;
use harana_common::uuid::Uuid;
use harana_database::files_count_all::files_count_all;
Expand Down Expand Up @@ -149,7 +150,8 @@ fn main() {

let _ = JOB_MANAGER.set(JobManager::new(
DATABASE_PATH.get().unwrap(),
30,
num_cpus::get() / 2,
1,
DATABASE_MANAGER.get().unwrap(),
job_handlers,
bool_setting("indexer_pause_ac_power_required").await,
Expand Down

0 comments on commit 9f15564

Please sign in to comment.