Clean up legacy top-level Configuration.Concurrency field and dead `m set` command
Remove legacy top-level Configuration.Concurrency and dead `set` command
PR #667: Fix miren app TUI showing auto for fixed-concurrency services
While reviewing #667, we noticed some vestigial code from before per-service concurrency was introduced:
cli/commands/set.godefines aSetcommand (m set -c <n>) that writes toConfiguration.Concurrency, but it's not registered in the dispatch table — dead codecli/commands/app_status.go:81checksappConfig.HasConcurrency()on that same top-level field, which is never populated byGetConfiguration— the check always evaluates to false- The
Configuration.concurrencyandauto_concurrencyfields inapi/app/rpc.yml(indices 1 and 2) may also be candidates for removal if nothing else references them
Low priority, just tidying up so the next person reading this code doesn't have to figure out why it's there.