Skip to content

Commit

Permalink
dbg: see if hdd detection works correctly on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
KSXGitHub committed Dec 1, 2024
1 parent 420c222 commit 8c06c0e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@ impl App {
Threads::Auto => {
let disks = Disks::new_with_refreshed_list();
if any_path_is_in_hdd::<hdd::RealApi>(&self.args.files, &disks) {
eprintln!("warning: HDD detected, the thread limit will be set to 1");
Some(1)
// eprintln!("warning: HDD detected, the thread limit will be set to 1");
// Some(1)
panic!("HDD detected");
} else {
None
}
Expand Down

0 comments on commit 8c06c0e

Please sign in to comment.