diff --git a/docs/superpowers/plans/2026-04-25-file-organizer-implementation.md b/docs/superpowers/plans/2026-04-25-file-organizer-implementation.md index 37d6cc6..bfb8512 100644 --- a/docs/superpowers/plans/2026-04-25-file-organizer-implementation.md +++ b/docs/superpowers/plans/2026-04-25-file-organizer-implementation.md @@ -872,7 +872,6 @@ export interface ThrottleProfile { networkHashWorkers: number; readChunkBytes: number; interChunkSleepMs: number; - processPriority: 'below-normal' | 'normal' | 'high'; maxOpenFiles: number; } @@ -890,7 +889,6 @@ export const DEFAULT_THROTTLE_PROFILES: Record {name} -
workers: local {p.localHashWorkers} / nas {p.networkHashWorkers} · chunk {p.readChunkBytes}B · sleep {p.interChunkSleepMs}ms · priority {p.processPriority}
+
workers: local {p.localHashWorkers} / nas {p.networkHashWorkers} · chunk {p.readChunkBytes}B · sleep {p.interChunkSleepMs}ms
{ const v = parseInt((e.target as HTMLInputElement).value, 10); setSettings({ diff --git a/docs/superpowers/specs/2026-04-25-file-organizer-design.md b/docs/superpowers/specs/2026-04-25-file-organizer-design.md index 4a1b322..1ad928d 100644 --- a/docs/superpowers/specs/2026-04-25-file-organizer-design.md +++ b/docs/superpowers/specs/2026-04-25-file-organizer-design.md @@ -254,7 +254,6 @@ Three profiles, hot-swappable mid-scan: | NAS hash workers | 1 | 1 | 2 | | Read chunk size | 256 KB | 1 MB | 4 MB | | Inter-chunk sleep (ms) | 5 | 1 | 0 | -| Process priority | below normal | normal | normal | | Max open files | 4 | 16 | 64 | NAS workers are capped low even on `full-send` because the bottleneck is network bandwidth and concurrent reads thrash mechanical disks. diff --git a/packages/shared/src/throttle.ts b/packages/shared/src/throttle.ts index 757a84c..4ba1a6b 100644 --- a/packages/shared/src/throttle.ts +++ b/packages/shared/src/throttle.ts @@ -6,7 +6,6 @@ export interface ThrottleProfile { networkHashWorkers: number; readChunkBytes: number; interChunkSleepMs: number; - processPriority: 'below-normal' | 'normal' | 'high'; maxOpenFiles: number; } @@ -25,7 +24,6 @@ export function defaultThrottleProfiles(cpuCount: number): Record onChange({ maxOpenFiles: num(e) })} /> - - - ); }