In case it is helpful in the future, this is how I checked:
These settings are almost always either system properties or codec fields, and codec fields can be controlled with system properties. So I just opened `Minion.java` and looked at the first dozen or so lines (discounting the license/imports/etc which a decent editor should fold away).
It was the 16th property down.
If it was a system property defined in another class. I probably would have tried doing find usages on `Parameter.intValue` scoped to the minion package and worked out from there. I wouldn't have been able to do that on my phone though so there would have been a larger delay.
If it had been a codec field, then the default values defined in `reference.conf` files (and their "included" friends) all usually contain legacy support in the form of aliases for the old system property paths. Codec fields can be controlled by using the fully qualified class name + "." + field name. You probably don't have codec-3 in your version of hydra, so you could just use the path from the part that would look something like `maxTasks = ${?minion.max.active.tasks}`. (or checkout your version and apply the steps from the first case).