The contract enforces a one-way constraint on the max_concurrent_farms parameter in the config update logic:
/contracts/farm-manager/src/manager/commands.rs#L325-L333
This code explicitly prevents any reduction in the max_concurrent_farms value, only allowing it to increase or remain unchanged. This creates a permanent state where:
Remove the non-reduction constraint and replace with proper validation.
